Files
hank/hank-godot/scripts/tests_Examples.gd
Nat Quayle Nelson 8caad092be
Some checks failed
/ test (push) Failing after 8s
Generate GDScript
2025-10-30 19:19:36 -05:00

19 lines
495 B
GDScript

class_name Examples
static var files: Variant = haxe_ds_StringMap.new()
static var fileBuffer = func(path: String) -> HankBuffer:
return HankBuffer.new(path, files.__get(path))
func _init() -> void:
pass
static func main() -> void:
haxe_Log.trace.call("Testing examples for target " + LogUtil.currentTarget(), {
"fileName": "../tests/main/Examples.hx",
"lineNumber": 8,
"className": "tests.main.Examples",
"methodName": "main"
})
StoryTestCase.new("examples").testAllExamples()