Shamir/tests/console.tests/UnitTest1.cs
2021-09-25 22:17:53 +10:00

18 lines
No EOL
258 B
C#

using NUnit.Framework;
namespace console.tests
{
public class Tests
{
[SetUp]
public void Setup()
{
}
[Test]
public void Test1()
{
Assert.Pass();
}
}
}