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

14 lines
248 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-07 01:53:51 +09:00
//new DataMapperTests().TestAll();
new HttpPipeLineTests().TestAll();
2025-06-04 23:10:11 +09:00
}
}
}