Files
XRLib/Assets/Scripts/UVC/Tests/Tester.cs
2025-06-07 01:53:51 +09:00

14 lines
248 B
C#

using UVC.Tests.Data;
namespace UVC.Tests
{
public static class Tester
{
public static void RunAllTests()
{
//new DataMapperTests().TestAll();
new HttpPipeLineTests().TestAll();
}
}
}