Files
GodotHelpers/GodotHelper.Tests/test/Tests.cs

14 lines
297 B
C#
Raw Normal View History

2026-04-10 18:59:27 -04:00
namespace GodotHelper.Tests;
using System.Reflection;
using Chickensoft.GoDotTest;
using Godot;
public partial class Tests : Node2D
{
public override void _Ready() => CallDeferred(MethodName.RunTests);
public void RunTests() =>
GoTest.RunTests(Assembly.GetExecutingAssembly(), this);
}