Exemplo n.º 1
0
 /**
  * Tests that the vehicle's ID of the first vehicle is correct.
  *
  * @throws IOException
  */
 @Test
 public void testVehicleIDAtStepOne() throws IOException {
   conn.nextSimStep();
   final Repository<Vehicle> repo = conn.getVehicleRepository();
   assertThat(repo.getIDs(), equalTo(Collections.singleton("0.0")));
 }
Exemplo n.º 2
0
 /**
  * In this simulation, there should be exactly one vehicle at step one.
  *
  * @throws IOException
  */
 @Test
 public void testOneVehicleAtStepOne() throws IOException {
   conn.nextSimStep();
   final Repository<Vehicle> repo = conn.getVehicleRepository();
   assertThat(repo.getIDs().size(), equalTo(1));
 }