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

Method testArrayofArray

test-suite/handwritten-src/ts/ArrayTest.ts:28–33  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

26 }
27
28 testArrayofArray() {
29 var inputArrays = [new Int32Array([1,1,1]), new Int32Array([2,2,2]), new Int32Array([3,3,3])];
30 var expectedArrays = [new Int32Array([3,3,3]), new Int32Array([2,2,2]), new Int32Array([1,1,1])];
31 var outputArrays = this.m.testsuite.TestArray.testArrayOfArray(inputArrays);
32 assertArrayEq(outputArrays, expectedArrays);
33 }
34}
35
36allTests.push(ArrayTest);

Callers

nothing calls this directly

Calls 2

assertArrayEqFunction · 0.90
testArrayOfArrayMethod · 0.65

Tested by

no test coverage detected