(length, max)
| 32 | |
| 33 | |
| 34 | function randomArray(length, max) { |
| 35 | return Array.apply(null, Array(length)).map(function () { |
| 36 | return Math.random() * max; |
| 37 | }); |
| 38 | } |
| 39 | |
| 40 | test("add one", () => { |
| 41 | tvm.beginScope(); |
no test coverage detected
searching dependent graphs…