slatedgtk/tests/UnitTest1.cs

18 lines
233 B
C#
Raw Normal View History

2020-05-20 05:36:52 +00:00
using NUnit.Framework;
namespace tests
{
public class Tests
{
[SetUp]
public void Setup()
{
}
[Test]
public void Test1()
{
Assert.Pass();
}
}
}