Enhanced EmbeddedScript error messages

This commit is contained in:
2020-12-10 12:38:21 -07:00
parent 209f2c467e
commit 734a7f2142
5 changed files with 81 additions and 26 deletions

View File

@@ -8,6 +8,9 @@ import kiss.Prelude;
class DSLTestCase extends Test {
function testScript() {
new DSLScript().run();
}
function testFork() {
new DSLScript().fork([() -> Assert.equals(5, 5), () -> Assert.equals(7, 7)]);
}
}