Ejemplo n.º 1
0
        public void ShouldRepeatANumberOfTimes()
        {
            Simon simon = new Simon();

            Assert.AreEqual("hello hello hello", simon.Repeat("hello", 3));
        }
Ejemplo n.º 2
0
        public void ShouldRepeat()
        {
            Simon simon = new Simon();

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