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

Method testGetWorld

src/test/java/mudmap2/frontend/WorldTabTest.java:76–88  ·  view source on GitHub ↗

Test of getWorld method, of class WorldTab.

()

Source from the content-addressed store, hash-verified

74 * Test of getWorld method, of class WorldTab.
75 */
76 @Test
77 public void testGetWorld() {
78 System.out.println("getWorld");
79
80 WorldTab instance = new WorldTab(null, new World(), false);
81 assertNotNull(instance.getWorld());
82
83 instance = new WorldTab(null, new World(), true);
84 assertNotNull(instance.getWorld());
85
86 instance = new WorldTab(instance);
87 assertNotNull(instance.getWorld());
88 }
89
90 /**
91 * Test of save method, of class WorldTab.

Callers

nothing calls this directly

Calls 1

getWorldMethod · 0.95

Tested by

no test coverage detected