MCPcopy Index your code
hub / github.com/jankotek/mapdb / testToString

Method testToString

src/test/java/org/mapdb/BTreeSet3Test.java:473–479  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

471 * toString contains toStrings of elements
472 */
473 public void testToString() {
474 NavigableSet q = populatedSet(SIZE);
475 String s = q.toString();
476 for (int i = 0; i < SIZE; ++i) {
477 assertTrue(s.contains(String.valueOf(i)));
478 }
479 }
480
481// /*
482// * A deserialized serialized set has same elements

Callers

nothing calls this directly

Calls 3

populatedSetMethod · 0.95
toStringMethod · 0.45
containsMethod · 0.45

Tested by

no test coverage detected