Example #1
0
        public void TestPlayExample7()
        {
            var play = Musical.Play("pep");

            Assert.AreEqual("birip, trri-trri, croac", play);
        }
Example #2
0
        public void TestPlayExample4()
        {
            var play = Musical.Play("brrah");

            Assert.AreEqual(string.Empty, play);
        }
Example #3
0
        public void TestPlayExample6()
        {
            var play = Musical.Play("fiu");

            Assert.AreEqual("cric-cric, brrah", play);
        }
Example #4
0
        public void TestPlayNotExist()
        {
            var play = Musical.Play("xyz");

            Assert.AreEqual(string.Empty, play);
        }