2
0
Files
controlmymonitormanagement/Tester/UnitTest1.cs

16 lines
214 B
C#
Raw Normal View History

2022-05-23 00:58:58 +08:00
namespace CMM.Tester
{
public class Tests
{
[SetUp]
public void Setup()
{
}
[Test]
public void Test1()
{
Assert.Pass();
}
}
}