Initial commit

This commit is contained in:
Projects
2024-11-27 12:07:20 -08:00
commit f0866e11d7
25 changed files with 658 additions and 0 deletions

View File

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