Files
XRLib/Assets/Scripts/UVC/Tests/Tester.cs

13 lines
199 B
C#
Raw Normal View History

2025-06-05 00:09:39 +09:00
using UVC.Tests.Data;
2025-06-04 23:10:11 +09:00
namespace UVC.Tests
{
public static class Tester
{
public static void RunAllTests()
{
2025-06-05 00:09:39 +09:00
new DataMapperTests().TestAll();
2025-06-04 23:10:11 +09:00
}
}
}