()
| 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 | |
| 31 | allTests.push(ArrayTest); |
nothing calls this directly
no test coverage detected