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
|
|
|
}
|