reorganize kiss into its own directory

This commit is contained in:
2020-12-05 18:35:09 -07:00
commit b440f0f07c
30 changed files with 2430 additions and 0 deletions

13
src/test/TestMain.hx Normal file
View File

@@ -0,0 +1,13 @@
package test;
import utest.Runner;
import utest.ui.Report;
class TestMain {
public static function main() {
var runner = new Runner();
runner.addCases(test.cases);
Report.create(runner);
runner.run();
}
}