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

15 lines
164 B
C#
Raw Normal View History

2024-04-03 12:25:25 -05:00
namespace Blog.Tests;
public class Tests
{
[SetUp]
public void Setup()
{
}
[Test]
public void Test1()
{
Assert.Pass();
}
}