Test method for groovy.lang.EmptyRange#toArray().
()
| 126 | * Test method for {@link groovy.lang.EmptyRange#toArray()}. |
| 127 | */ |
| 128 | public void testToArray() { |
| 129 | assertArrayEquals(new Object[0], range.toArray()); |
| 130 | } |
| 131 | |
| 132 | /** |
| 133 | * Test method for {@link groovy.lang.EmptyRange#get(int)}. |
nothing calls this directly
no test coverage detected