()
| 169 | } |
| 170 | |
| 171 | @Test |
| 172 | public void addCollision() throws Exception { |
| 173 | final Tree tree = buildTestTree(); |
| 174 | assertNull(tree.getCollisions()); |
| 175 | tree.addCollision("010203", "AABBCCDD"); |
| 176 | assertEquals(1, tree.getCollisions().size()); |
| 177 | } |
| 178 | |
| 179 | @Test (expected = IllegalArgumentException.class) |
| 180 | public void addCollisionNull() throws Exception { |
nothing calls this directly
no test coverage detected