예제 #1
0
 public void SampleTest()
 {
     // Additional sample tests are left as an exercise to the user.
     // Feel free to add more tests using the "Assert.That(actual, Is.EqualTo(expected))" syntax
     Assert.That(GreetMe.Greet("riley"), Is.EqualTo("Hello Riley!"));
 }
예제 #2
0
        static void Main(string[] args)
        {
            var gr = new GreetMe();

            Console.WriteLine(gr.Greet("Container World"));
        }