controlmymonitormanagement/Tester/UnitTest1.cs
2022-05-23 00:58:58 +08:00

16 lines
214 B
C#

namespace CMM.Tester
{
public class Tests
{
[SetUp]
public void Setup()
{
}
[Test]
public void Test1()
{
Assert.Pass();
}
}
}