ln.http/ln.http.tests/UnitTest1.cs

18 lines
241 B
C#

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