unit.TestRunner

TestRunner

package haxe-unit

Available on all platforms

This 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:

Constructor

new ()

Variables

read only result:TestResult