feat: update

This commit is contained in:
2026-06-11 18:28:25 +08:00
parent 8520f9db3c
commit 8a2fb36a98
65 changed files with 4407 additions and 572 deletions
+2 -2
View File
@@ -65,12 +65,12 @@ func test_central_error_handling():
# Test 9: Service ownership is clear
func test_service_ownership_clear():
var owners = _get_service_owners()
assert_is_not_empty(owners, "Service owners should be defined")
assert_false(owners.is_empty(), "Service owners should be defined")
# Test 10: Facade provides unified interface
func test_facade_unified_interface():
var methods = _get_facade_methods()
assert_is_not_empty(methods, "Facade should provide methods")
assert_false(methods.is_empty(), "Facade should provide methods")
# Helper functions
func _facade_has_service(service_name: String) -> bool: