()
| 177 | } |
| 178 | |
| 179 | @Test (expected = IllegalArgumentException.class) |
| 180 | public void addCollisionNull() throws Exception { |
| 181 | final Tree tree = buildTestTree(); |
| 182 | assertNull(tree.getCollisions()); |
| 183 | tree.addCollision(null, "AABBCCDD"); |
| 184 | } |
| 185 | |
| 186 | @Test (expected = IllegalArgumentException.class) |
| 187 | public void addCollisionEmpty() throws Exception { |
nothing calls this directly
no test coverage detected