コード例 #1
0
        public void GreetMeTest()
        {
            ViewRepository repo             = new ViewRepository();
            string         expectedGreeting = "Hello Anton";
            string         actualGreeting;

            actualGreeting = repo.GreetMe("Anton");

            Assert.AreEqual(expectedGreeting, actualGreeting);
        }