dot/tests/TestGet.cs

13 lines
157 B
C#

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