Added tests for array/struct impl, but they in general require printing

to screen
This commit is contained in:
Mitchell Plamann
2015-04-06 01:21:41 -04:00
parent 447b40710e
commit 30e983e656
11 changed files with 150 additions and 0 deletions

View File

@@ -37,3 +37,14 @@ exports.testIF = doTest("testif.c0.bc0", 32);
exports.testDSQUARED = doTest("dsquared.c0.bc0", 17068);
exports.testArrays = function(test) {
var result = c0vm.execute(parser.parse("arrays.c0.bc0"), callbacks, false);
test.ok(false, "test.bc0 - Did not print to screen correctly");
test.done();
}
exports.testStructs = function(test) {
var result = c0vm.execute(parser.parse("structs.c0.bc0"), callbacks, false);
test.ok(false, "test.bc0 - Did not print to screen correctly");
test.done();
}