Test of getPathColorStd method, of class World.
()
| 402 | * Test of getPathColorStd method, of class World. |
| 403 | */ |
| 404 | @Test |
| 405 | public void testGetPathColorStd() { |
| 406 | System.out.println("getPathColorStd"); |
| 407 | |
| 408 | World instance = new World("MyWorld"); |
| 409 | Color expResult = instance.pathColorCardinal; |
| 410 | Color result = instance.getPathColorStd(); |
| 411 | assertEquals(expResult, result); |
| 412 | } |
| 413 | |
| 414 | /** |
| 415 | * Test of getPathColorNstd method, of class World. |
nothing calls this directly
no test coverage detected