public class TestStartup extends FrameworkTestCase
{
public void testStartupImpl()
{
StartupRunnableFixture fixture = new StartupRunnableFixtureImpl();
List l = new ArrayList();
l.add(fixture);
StartupImpl s = new StartupImpl();
s.setRunnables(l);
s.run();
assertEquals(true, fixture.getDidRun());
}