Shamir/tests/console.tests/CommandTreeTests.cs

18 lines
265 B
C#
Raw Normal View History

2021-09-25 12:17:53 +00:00
using NUnit.Framework;
2021-09-25 12:19:16 +00:00
namespace Shamir.Console.Tests
2021-09-25 12:17:53 +00:00
{
public class Tests
{
[SetUp]
public void Setup()
{
}
[Test]
public void Test1()
{
Assert.Pass();
}
}
}