Test of getPathColorNstd method, of class World.
()
| 415 | * Test of getPathColorNstd method, of class World. |
| 416 | */ |
| 417 | @Test |
| 418 | public void testGetPathColorNstd() { |
| 419 | System.out.println("getPathColorNstd"); |
| 420 | |
| 421 | World instance = new World("MyWorld"); |
| 422 | Color expResult = instance.pathColorNonCardinal; |
| 423 | Color result = instance.getPathColorNstd(); |
| 424 | assertEquals(expResult, result); |
| 425 | } |
| 426 | |
| 427 | /** |
| 428 | * Test of getPathColor method, of class World. |
nothing calls this directly
no test coverage detected