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

17 lines
390 B
C#

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