()
| 8 | this.m = module; |
| 9 | } |
| 10 | testStringArray() { |
| 11 | var inputStrings = ['1', '2', '3']; |
| 12 | var expectedStrings = ['3', '2', '1']; |
| 13 | assertArrayEq(this.m.testsuite.TestArray.testStringArray(inputStrings), expectedStrings); |
| 14 | } |
| 15 | |
| 16 | testIntArray() { |
| 17 | var inputIntegers = new Int32Array([1,2,3]); |
nothing calls this directly
no test coverage detected