Files
XRLib/Assets/Scripts/UVC/Tests/Tester.cs
2025-07-15 15:25:17 +09:00

17 lines
397 B
C#

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