slatedgtk/tests/UnitTest1.cs
2020-05-22 12:35:09 -05:00

18 lines
233 B
C#

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