()
| 632 | index = 0; |
| 633 | |
| 634 | function test() { |
| 635 | var entry = indices[index++]; |
| 636 | wrapGetAdjacent(layout, entry[0], entry[1]).done(function (output) { |
| 637 | if (index < indices.length) { |
| 638 | LiveUnit.Assert.areEqual(entry[2], output, "Error in " + index + " step"); |
| 639 | test(); |
| 640 | } else { |
| 641 | complete(); |
| 642 | } |
| 643 | }); |
| 644 | } |
| 645 | |
| 646 | test(); |
| 647 | }); |
no test coverage detected