2025-02-26 23:06:06 +04:00

16 lines
216 B
C#

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