public void GreetMeTest() { ViewRepository repo = new ViewRepository(); string expectedGreeting = "Hello Anton"; string actualGreeting; actualGreeting = repo.GreetMe("Anton"); Assert.AreEqual(expectedGreeting, actualGreeting); }