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

Method assertEq

src/test/java/org/mapdb/BTreeSet2Test.java:981–986  ·  view source on GitHub ↗
(Integer i, int j)

Source from the content-addressed store, hash-verified

979 }
980
981 static void assertEq(Integer i, int j) {
982 if (i == null)
983 assertEquals(j, -1);
984 else
985 assertEquals((int) i, j);
986 }
987
988 static boolean eq(Integer i, int j) {
989 return i == null ? j == -1 : i == j;

Callers 1

checkMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected