Test of getWorld method, of class WorldTab.
()
| 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. |