chore: add GUT test framework

This commit is contained in:
xiaji
2026-05-29 09:16:10 +08:00
parent 5741ba1dc0
commit 07fc763413
808 changed files with 76903 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
class_name GutDoubleTestInnerClasses
var _value = 1
func get_value():
return _value
func set_value(val):
_value = val
class InnerA:
func get_a():
return 'a'
# Needed another class with same method as an inner class to test
# stubbing.
class AnotherInnerA:
func get_a():
return 'aia'
class InnerB:
func get_b():
return 'b'
class InnerB1:
func get_b1():
return 'b1'
class InnerCA:
extends InnerA
func get_ca():
return 'ca'
class InnerWithSignals:
signal signal_signal
class InnerExtendsNode2D:
extends Node2D