Example #1
0
        public void ShouldEchoBye()
        {
            Simon simon = new Simon();

            Assert.AreEqual("bye", simon.Echo("Bye"));
        }
Example #2
0
        public void ShouldEchoHello()
        {
            Simon simon = new Simon();

            Assert.AreEqual("hello", simon.Echo("hello"));
        }