MCPcopy Create free account
hub / github.com/cruppstahl/upscaledb / assertByteArrayEquals

Method assertByteArrayEquals

java/unittests/CursorTest.java:183–189  ·  view source on GitHub ↗
(byte[] r1, byte[] r2)

Source from the content-addressed store, hash-verified

181 }
182
183 public void assertByteArrayEquals(byte[] r1, byte[] r2) {
184 assertEquals(r1.length, r2.length);
185
186 for (int i = 0; i < r1.length; i++) {
187 assertEquals(r1[i], r2[i]);
188 }
189 }
190
191 public void testGetKey() {
192 byte[] key = new byte[10];

Callers 6

testGetKeyMethod · 0.95
testGetRecordMethod · 0.95
testOverwriteMethod · 0.95
testFindMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected