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
364365366367368369370
public class TestEntityName extends TestCase { private FIFO fifo; public TestEntityName(String s) { super(s); fifo = new FIFO(); }
366367368369370371372
public class TestScheduledTimeLast extends TestCase { private FIFO fifo; public TestScheduledTimeLast(String s) { super(s); fifo = new FIFO(); }
368369370371372373374
public class TestPeriodic extends TestCase { private FIFO fifo; public TestPeriodic(String s) { super(s); fifo = new FIFO(); }
365366367368369370371
public class TestTimeLast extends TestCase { private FIFO fifo; public TestTimeLast(String s) { super(s); fifo = new FIFO(); }
367368369370371372373
public class TestEntityInitialization extends TestCase { private FIFO fifo; public TestEntityInitialization(String s) { super(s); fifo = new FIFO(); }
extends TestCase { private FIFO fifo; public TestSchedEventTwo(String s) { super(s); fifo = new FIFO(); }
private FIFO fifo; private long startTime, finishTime; public TestSetPace(String s) { super(s); fifo = new FIFO(); }
public class TestMixedViews extends TestCase { private FIFO fifo; public TestMixedViews(String s) { super(s); fifo = new FIFO(); }
public class TestEarlyActionMethod extends TestCase { private FIFO fifo; //a global variable! public TestEarlyActionMethod(String s) { super(s); fifo = new FIFO(); }
public class TestWaitingForTheEnd extends TestCase { private FIFO fifo; public TestWaitingForTheEnd(String s) { super(s); fifo = new FIFO(); }