MCPcopy Create free account
hub / github.com/Neop/mudmap2 / testSetPlaceholder

Method testSetPlaceholder

src/test/java/mudmap2/backend/WorldTest.java:227–238  ·  view source on GitHub ↗

Test for putPlaceholder

()

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 4

getNewLayerMethod · 0.95
getMethod · 0.95
putPlaceholderMethod · 0.95
getIdMethod · 0.95

Tested by

no test coverage detected