Example #1
0
        public void InsertW(string con, string word, string expected)
        {
            StringWarmUp res    = new StringWarmUp();
            string       result = res.InsertW(con, word);

            Assert.AreEqual(expected, result);
        }
Example #2
0
        public void helloTest(string name, string expected)
        {
            StringWarmUp WorkString = new StringWarmUp();
            string       result     = WorkString.SayHi(name);

            Assert.AreEqual(expected, result);
        }