Dotnet_Library/project_name.Tests/UnitTest1.cs
Simon Diesenreiter bbfabb2eee
Some checks failed
Rename the project from template / rename-project (push) Has been skipped
SonarQube Scan / SonarQube Trigger (push) Has been skipped
CI / linter (9.0.X, ubuntu-latest) (push) Failing after 54s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Has been skipped
initial commit
2024-11-27 20:44:34 +01:00

15 lines
314 B
C#

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());
}
}