public void ShoutMultipleWords() { Simon simon = new Simon(); Assert.AreEqual("HELLO WORLD", simon.Shout("hello world")); }
public void ShoutHello() { Simon simon = new Simon(); Assert.AreEqual("HELLO", simon.Shout("hello")); }