(count)
| 16 | } |
| 17 | |
| 18 | function makeItems (count) |
| 19 | { |
| 20 | var items = []; |
| 21 | for (var i = 0; i < count; i++) |
| 22 | { |
| 23 | items.push(makeItem(0, 0)); |
| 24 | } |
| 25 | return items; |
| 26 | } |
| 27 | |
| 28 | it('should return the items array', function () |
| 29 | { |
no test coverage detected
searching dependent graphs…