11 lines
157 B
C#
11 lines
157 B
C#
|
|
using Generated;
|
||
|
|
|
||
|
|
namespace Tests;
|
||
|
|
|
||
|
|
public class UnitTest1 {
|
||
|
|
[Fact]
|
||
|
|
public void Test1() {
|
||
|
|
Assert.Equal("Hello World!!!", HelloWorld.SayHello());
|
||
|
|
}
|
||
|
|
}
|