示例#1
0
 /**
  * Test method for {@link org.microworld.robots.DriverAgent#postTrip(org.microworld.models.Trip)}
  * .
  */
 @Test
 public void testPostTrip() {
   Log.verbose("driverTest", "trip : " + trip.toVerboseString());
   Trip result = driver.postTrip(trip);
   assertNotNull(result);
   assertTrue(result instanceof Trip);
   trip = result;
   driver.activateTrip(trip);
 }