返回 Skill 列表
extension
分类: 开发与工程无需 API Key

gdUnit4 Test Writer

编写gdUnit4测试代码,包括特定类型的断言、信号测试和支持场景运行器。在为GDScript文件创建或更新测试时使用。

person作者: jakexiaohubgithub

gdUnit4 Test Writer

Write gdUnit4 test code for GDScript files with proper assertions and test structure.

Workflow

  1. Analyze target file - Read the GDScript file to understand what needs testing
  2. Check gdUnit4 docs - Use Context7 (/websites/godot-gdunit-labs_github_io_gdunit4) if needed
  3. Select assertions - Use type-specific assertions (see [references/assertions.md])
  4. Create test file - Place in res://tests/ directory with test_*.gd naming (e.g., test_player.gd)
  5. Validate - Use gdscript-validate skill to check for errors

Quick Reference

Test File Template

extends GdUnitTestSuite

func test_example() -> void:
    assert_int(1).is_equal(1)

Common Assertions

  • int: assert_int(value).is_equal(10)
  • float: assert_float(value).is_equal_approx(3.14, 0.01)
  • String: assert_str(text).contains("hello")
  • Array: assert_array(items).has_size(5)
  • Object: assert_object(node).is_not_null()
  • Signal: await assert_signal(emitter).is_emitted("signal_name")

Memory Management

func test_with_node() -> void:
    var node: Node = auto_free(Node.new())  # Auto-freed after test
    assert_object(node).is_not_null()

References

Context7 Library ID

For detailed gdUnit4 documentation:

  • Library ID: /websites/godot-gdunit-labs_github_io_gdunit4