Test of getTileCenterColor method, of class World.
()
| 556 | * Test of getTileCenterColor method, of class World. |
| 557 | */ |
| 558 | @Test |
| 559 | public void testGetTileCenterColor() { |
| 560 | System.out.println("getTileCenterColor"); |
| 561 | |
| 562 | World instance = new World("MyWorld"); |
| 563 | Color expResult = instance.tileCenterColor; |
| 564 | Color result = instance.getTileCenterColor(); |
| 565 | assertEquals(expResult, result); |
| 566 | } |
| 567 | |
| 568 | /** |
| 569 | * Test of setTileCenterColor method, of class World. |
nothing calls this directly
no test coverage detected