Test of toString method, of class Layer.
()
| 814 | * Test of toString method, of class Layer. |
| 815 | */ |
| 816 | @Test |
| 817 | public void testToString() { |
| 818 | System.out.println("toString"); |
| 819 | |
| 820 | Layer instance = new Layer(world); |
| 821 | String expResult = instance.getName(); |
| 822 | String result = instance.toString(); |
| 823 | assertEquals(expResult, result); |
| 824 | } |
| 825 | |
| 826 | /** |
| 827 | * |