GodotComponentTest/tests/Tests.cs

9 lines
206 B
C#
Raw Normal View History

2022-12-02 21:09:40 +01:00
using System.Reflection;
using Godot;
using GoDotTest;
2023-11-18 22:32:57 +01:00
public class Tests : Control {
public override async void _Ready() {
await GoTest.RunTests(Assembly.GetExecutingAssembly(), this);
}
2022-12-02 21:09:40 +01:00
}