15 lines
315 B
C#
Raw Permalink Normal View History

2024-11-27 20:09:05 +00:00
namespace DotnetTestLib.Tests;
2024-11-27 12:07:20 -08:00
2024-11-27 20:09:05 +00:00
using DotnetTestLib;
2024-11-27 12:07:20 -08:00
public class UnitTest1
{
[Fact]
public void Test1()
{
var hwp = new HelloWorldProvider();
Assert.Equal("Hello, Simon!", hwp.GetHelloWorld("Simon"));
Assert.Equal("Hello world!", hwp.GetHelloWorld());
}
}