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:

Static methods

staticdynamic print (v:Dynamic):Void

Prints the given object/value.

Flash outputs the result in a new TextField on stage. JavaScript outputs the result using console.log. Other targets use native print to output the result.

	This function is `dynamic` so it can be overriden in custom setups.