<chore> + 增加测试项目

This commit is contained in:
2022-12-13 14:28:03 +08:00
parent 750545c2d0
commit e74157ec78
6 changed files with 42 additions and 10 deletions

13
tests/TestGet.cs Normal file
View File

@ -0,0 +1,13 @@
namespace Dot.Tests;
public class TestGet
{
[SetUp]
public void Setup() { }
[Test]
public void Test1()
{
Assert.Pass();
}
}