Files
Creek.FileRepository/UnitTests/UnitTest1.cs
T
2021-08-29 23:20:12 +01:00

18 lines
237 B
C#

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