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

15 lines
297 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();
2025-06-10 01:09:36 +09:00
//new HttpPipeLineTests().TestAll();
new MQTTPipeLineTests().TestAll();
2025-06-04 23:10:11 +09:00
}
}
}