Test of getInfoRing method, of class Place.
()
| 345 | * Test of getInfoRing method, of class Place. |
| 346 | */ |
| 347 | @Test |
| 348 | public void testGetInfoRing() { |
| 349 | System.out.println("getInfoRing"); |
| 350 | |
| 351 | Place instance = new Place("MyPlace", 0, 0, layer); |
| 352 | // default value |
| 353 | assertNull(instance.getInfoRing()); |
| 354 | |
| 355 | InformationColor expResult = new InformationColor("description", Color.yellow); |
| 356 | instance.setInfoRing(expResult); |
| 357 | InformationColor result = instance.getInfoRing(); |
| 358 | assertEquals(expResult, result); |
| 359 | } |
| 360 | |
| 361 | /** |
| 362 | * Test of setInfoRing method, of class Place. |
nothing calls this directly
no test coverage detected