Stores an ordered list of WaitResultTest objects that are added during the execution of a simulation in a correctness test.
WaitResultTest
Copyright © 2003-2004 The MITRE Corporation
366367368369370371372
public class TestScheduledStopSim extends TestCase { private FIFO fifo; public TestScheduledStopSim(String s) { super(s); fifo = new FIFO(); }
367368369370371372373
public class TestStopSimulation extends TestCase { private FIFO fifo; //a global variable! public TestStopSimulation(String s) { super(s); fifo = new FIFO(); }
extends TestCase { private FIFO fifo; public TestSchedEventThree(String s) { super(s); fifo = new FIFO(); }
368369370371372373374
extends TestCase { private FIFO fifo; public TestForAgenda(String s) { super(s); fifo = new FIFO(); }
365366367368369370371
public class Test2Periodics extends TestCase { private FIFO fifo; public Test2Periodics(String s) { super(s); fifo = new FIFO(); }