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