blob: 67f0953eb480410ce71ab066b430dc2fd2ebb145 [file] [log] [blame]
loadModule("/Unittest");
startTest("valid", "simple valid test")
assertTrue(true)
endTest()
startTest("invalid", "simple fail test")
assertTrue(false)
endTest()
startTest("ignored test", "this test does not count")
ignoreTest();
assertTrue(false);
endTest()
startTest("error", "test raising an error")
throw "does not work"
endTest()