Test of getWorld method, of class Layer.
()
| 661 | * Test of getWorld method, of class Layer. |
| 662 | */ |
| 663 | @Test |
| 664 | public void testGetWorld() { |
| 665 | System.out.println("getWorld"); |
| 666 | |
| 667 | Layer instance = new Layer(world); |
| 668 | World result = instance.getWorld(); |
| 669 | assertEquals(world, result); |
| 670 | } |
| 671 | |
| 672 | /** |
| 673 | * Test of removePlace method, of class Layer. |