MCPcopy Create free account
hub / github.com/Snapchat/djinni / testArrayofArray

Method testArrayofArray

test-suite/handwritten-src/js/ArrayTests.js:23–28  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

21 }
22
23 testArrayofArray() {
24 var inputArrays = [new Uint32Array([1,1,1]), new Uint32Array([2,2,2]), new Uint32Array([3,3,3])];
25 var expectedArrays = [new Uint32Array([3,3,3]), new Uint32Array([2,2,2]), new Uint32Array([1,1,1])];
26 var outputArrays = this.module.testsuite.TestArray.testArrayOfArray(inputArrays);
27 assertArrayEq(outputArrays, expectedArrays);
28 }
29}
30
31allTests.push(ArrayTest);

Callers

nothing calls this directly

Calls 2

assertArrayEqFunction · 0.70
testArrayOfArrayMethod · 0.65

Tested by

no test coverage detected