예제 #1
0
        public void ShouldRepeatANumberOfTimes()
        {
            Simon simon = new Simon();

            Assert.AreEqual("hello hello hello", simon.Repeat("hello", 3));
        }
예제 #2
0
        public void ShouldRepeat()
        {
            Simon simon = new Simon();

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