Ready to clone and code.

This commit is contained in:
simon
2024-11-27 20:09:05 +00:00
committed by github-actions[bot]
parent 6298a623f7
commit 828e257453
17 changed files with 28 additions and 117 deletions

View File

@@ -0,0 +1,14 @@
namespace DotnetTestLib.Tests;
using DotnetTestLib;
public class UnitTest1
{
[Fact]
public void Test1()
{
var hwp = new HelloWorldProvider();
Assert.Equal("Hello, Simon!", hwp.GetHelloWorld("Simon"));
Assert.Equal("Hello world!", hwp.GetHelloWorld());
}
}