ln.logging/ln.logging.tests/UnitTest1.cs

18 lines
244 B
C#

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