Package view

Examples of view.InsertStations


  //  fail("Mauvais chemin du fichier.");
  }
 
  @Test //test getStationToPlace
  public void testGetStationToPlace(){
    InsertStations temp = test.getStationToPlace();
    assertEquals(temp, test.getStationToPlace());
  }
View Full Code Here


    assertEquals(temp, test.getStationToPlace());
  }
 
  @Test //test setStationToPlace
  public void testSetStationToPlace(){
    InsertStations temp = new InsertStations(test);
    test.setStationToPlace(temp);
    assertEquals(temp, test.getStationToPlace());
  }
View Full Code Here

TOP

Related Classes of view.InsertStations

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.