Esempio n. 1
0
        public void ShoutMultipleWords()
        {
            Simon simon = new Simon();

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

            Assert.AreEqual("HELLO", simon.Shout("hello"));
        }