Test of constructors
()
| 59 | * Test of constructors |
| 60 | */ |
| 61 | @Test |
| 62 | public void testWorld(){ |
| 63 | System.out.println("World"); |
| 64 | |
| 65 | World instance1 = new World(); |
| 66 | assertNotNull(instance1.getHome()); |
| 67 | assertNotNull(instance1.getLayers()); |
| 68 | assertNotNull(instance1.getName()); |
| 69 | assertEquals("unnamed", instance1.getName()); |
| 70 | assertNotNull(instance1.getPathColorStd()); |
| 71 | assertNotNull(instance1.getPathColorNstd()); |
| 72 | assertNotNull(instance1.getPathColors()); |
| 73 | assertNotNull(instance1.getPlaceGroups()); |
| 74 | assertNotNull(instance1.getPreferences()); |
| 75 | assertNotNull(instance1.getInformationColors()); |
| 76 | assertNotNull(instance1.getTileCenterColor()); |
| 77 | assertNull(instance1.getWorldFile()); |
| 78 | } |
| 79 | |
| 80 | /** |
| 81 | * Test of constructors |
nothing calls this directly
no test coverage detected