Files
blog.stevanfreeborn.com/test/Blog.Tests/UnitTest1.cs
T

15 lines
164 B
C#

namespace Blog.Tests;
public class Tests
{
[SetUp]
public void Setup()
{
}
[Test]
public void Test1()
{
Assert.Pass();
}
}