()
| 469 | } |
| 470 | |
| 471 | @Test |
| 472 | public void fetchCollisionsSingleNotFound() throws Exception { |
| 473 | setupStorage(true, true); |
| 474 | final ArrayList<String> tsuids = new ArrayList<String>(1); |
| 475 | tsuids.add("030303"); |
| 476 | Map<String, String> collisions = |
| 477 | Tree.fetchCollisions(storage.getTSDB(), 1, tsuids).joinUninterruptibly(); |
| 478 | assertNotNull(collisions); |
| 479 | assertEquals(0, collisions.size()); |
| 480 | } |
| 481 | |
| 482 | @Test (expected = IllegalArgumentException.class) |
| 483 | public void fetchCollisionsID0() throws Exception { |
nothing calls this directly
no test coverage detected