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

Method assertByteArrayEquals

java/unittests/DatabaseTest.java:24–30  ·  view source on GitHub ↗
(byte[] r1, byte[] r2)

Source from the content-addressed store, hash-verified

22public class DatabaseTest extends TestCase {
23
24 public void assertByteArrayEquals(byte[] r1, byte[] r2) {
25 assertEquals(r1.length, r2.length);
26
27 for (int i = 0; i < r1.length; i++) {
28 assertEquals(r1[i], r2[i]);
29 }
30 }
31
32 public void testGetVersion() {
33 Version v = Database.getVersion();

Callers 3

testSetComparator1Method · 0.95
testBulkOperationsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected