Example #1
0
        public void EveryNthTest(string str, int n, string expected)
        {
            ConditionalWarmups cw     = new ConditionalWarmups();
            string             result = cw.EveryNth(str, n);

            Assert.AreEqual(expected, result);
        }