()
| 14 | } |
| 15 | |
| 16 | testIntArray() { |
| 17 | var inputIntegers = new Int32Array([1,2,3]); |
| 18 | var expectedIntegers = new Int32Array([3,2,1]); |
| 19 | assertArrayEq(this.m.testsuite.TestArray.testIntArray(inputIntegers), expectedIntegers); |
| 20 | } |
| 21 | |
| 22 | testRecordArray() { |
| 23 | var inputRecords = [{x:1, y:1}, {x:2, y:2}, {x:3, y:3}]; |
nothing calls this directly
no test coverage detected