Test of getNewLayer method, of class World.
()
| 327 | * Test of getNewLayer method, of class World. |
| 328 | */ |
| 329 | @Test |
| 330 | public void testGetNewLayer() { |
| 331 | System.out.println("getNewLayer"); |
| 332 | |
| 333 | World instance = new World("MyWorld"); |
| 334 | |
| 335 | Layer result = instance.getNewLayer(); |
| 336 | assertNotNull(result); |
| 337 | // check whether the new layer is actually in the list |
| 338 | assertEquals(result, instance.getLayer(result.getId())); |
| 339 | } |
| 340 | |
| 341 | /** |
| 342 | * Test for getNextLayerID |
nothing calls this directly
no test coverage detected