static void Main(string[] args) { var hello = new HelloWorld(); Console.WriteLine(hello.SayHello()); }
public void say_hello_test() { var hello = new HelloWorld(); Assert.AreEqual("Hello World!", hello.SayHello()); }