Package it.polito.appeal.traci

Examples of it.polito.appeal.traci.POI.changeType()


  @Test
  public void testSetPOIType() throws IOException {
    Repository<POI> poiRepo = conn.getPOIRepository();
    POI poi = poiRepo.getByID("0");
    final String newType = "NEW_TYPE";
    poi.changeType(newType);
    assertEquals(newType, poi.getType());
  }
 
  /**
   * Checks the correct setting of a POI's position.
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.