Package org.mitre.sim.test

Examples of org.mitre.sim.test.FIFO


public class TestScheduledStopSim extends TestCase {
  private FIFO fifo;

  public TestScheduledStopSim(String s) {
    super(s);
    fifo = new FIFO();
  }
View Full Code Here


public class TestStopSimulation extends TestCase {
  private FIFO fifo; //a global variable!

  public TestStopSimulation(String s) {
    super(s);
    fifo = new FIFO();
  }
View Full Code Here

    extends TestCase {
  private FIFO fifo;

  public TestSchedEventThree(String s) {
    super(s);
    fifo = new FIFO();
  }
View Full Code Here

    extends TestCase {
  private FIFO fifo;

  public TestForAgenda(String s) {
    super(s);
    fifo = new FIFO();
  }
View Full Code Here

public class Test2Periodics extends TestCase {
  private FIFO fifo;

  public Test2Periodics(String s) {
    super(s);
    fifo = new FIFO();
  }
View Full Code Here

TOP

Related Classes of org.mitre.sim.test.FIFO

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.