MCPcopy Index your code
hub / github.com/OpenTSDB/opentsdb / fetchCollisionsSingleNotFound

Method fetchCollisionsSingleNotFound

test/tree/TestTree.java:471–480  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls 5

setupStorageMethod · 0.95
fetchCollisionsMethod · 0.95
getTSDBMethod · 0.80
sizeMethod · 0.65
addMethod · 0.45

Tested by

no test coverage detected