Files
hank/tests/main/Examples.hx
2025-10-30 19:11:17 -05:00

15 lines
354 B
Haxe

package tests.main;
import hank.StoryTestCase;
import hank.LogUtil;
@:build(hank.FileLoadingMacro.build(["examples/"]))
class Examples {
public static function main() {
trace('Testing examples for target ${LogUtil.currentTarget()}');
new StoryTestCase("examples"
#if !sys
, files
#end
).testAllExamples();
}
}