Test for putPlaceholder
()
| 225 | * Test for putPlaceholder |
| 226 | */ |
| 227 | @Test |
| 228 | public void testSetPlaceholder(){ |
| 229 | System.out.println("putPlaceholder"); |
| 230 | |
| 231 | World instance = new World(); |
| 232 | Layer layer = instance.getNewLayer(); |
| 233 | |
| 234 | assertNull(layer.get(5, 7)); |
| 235 | |
| 236 | instance.putPlaceholder(layer.getId(), 5, 7); |
| 237 | assertNotNull(layer.get(5, 7)); |
| 238 | } |
| 239 | |
| 240 | /** |
| 241 | * Test of getLayer method, of class World. |
nothing calls this directly
no test coverage detected