public void ShouldEchoBye() { Simon simon = new Simon(); Assert.AreEqual("bye", simon.Echo("Bye")); }
public void ShouldEchoHello() { Simon simon = new Simon(); Assert.AreEqual("hello", simon.Echo("hello")); }