exercism/csharp/hello-world/HelloWorldTest.cs

12 lines
232 B
C#
Raw Normal View History

2018-03-02 22:27:55 +00:00
// This file was auto-generated based on version 1.0.0 of the canonical data.
using Xunit;
public class HelloWorldTest
{
[Fact]
public void Say_hi_()
{
Assert.Equal("Hello, World!", HelloWorld.Hello());
}
}