System.out.println("*** testLoadTimeDeclare");
SystemOutDecorator out = null;
try
{
out = SystemOutDecorator.initialise();
BusinessObject bo = new BusinessObject();
bo.createVehicles();
ArrayList expected = getExpectedWarnings();
ArrayList actual = out.getWarnings();
compareWarnings(expected, actual);
}
finally