15 lines
		
	
	
		
			315 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			315 B
		
	
	
	
		
			C#
		
	
	
	
	
	
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());
 | 
						|
    }
 | 
						|
}
 |