Create basic unit testing framework

This commit is contained in:
2026-03-19 14:24:11 -05:00
parent 57a6643a76
commit b23f6c14b8
6 changed files with 53 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
extends BaseTestRunner
func Test_1() -> bool:
var json_string = "{\"Key\": false}"
var json = JSON.new()
var parse_result := json.parse(json_string)
if parse_result != OK:
return false
return true
func Test_2() -> String:
return ''