unit.TestRunner
TestRunner
package haxe-unit
Available on all platformsThis class runs unit test cases and prints the result.
var r = new haxe.unit.TestRunner(); r.add(new MyTestCase()); // add other TestCases here // finally, run the tests r.run();
See: