ln.objects/ln.objects.tests/UnitTest1.cs

18 lines
244 B
C#
Raw Normal View History

2021-01-12 14:43:50 +01:00
using NUnit.Framework;
namespace ln.objects.tests
{
public class Tests
{
[SetUp]
public void Setup()
{
}
[Test]
public void Test1()
{
Assert.Pass();
}
}
}