Test of toString method, of class Place.
()
| 810 | * Test of toString method, of class Place. |
| 811 | */ |
| 812 | @Test |
| 813 | public void testToString() { |
| 814 | System.out.println("toString"); |
| 815 | |
| 816 | Place instance = new Place("MyPlace", 0, 0, layer); |
| 817 | String expResult = instance.getName() + " (ID: " + instance.getId() + ")"; |
| 818 | String result = instance.toString(); |
| 819 | assertEquals(expResult, result); |
| 820 | } |
| 821 | |
| 822 | /** |
| 823 | * Test of compareTo method, of class Place. |