Files
LNXSDK/Kha/Backends/Kore-hxcpp/khacpp/test/telemetry/TestMain.hx

14 lines
274 B
Haxe
Raw Normal View History

2026-05-22 11:54:15 -07:00
package;
class TestMain {
static function main(){
var r = new haxe.unit.TestRunner();
r.add(new TestBasic());
var t0 = haxe.Timer.stamp();
var success = r.run();
trace(" Time : " + (haxe.Timer.stamp()-t0)*1000 );
Sys.exit(success ? 0 : 1);
}
}