Beispiel #1
0
        public void RunTest01()
        {
            URLify test   = new URLify("Hello There  ".ToCharArray(), 11);
            var    result = test.Run();

            CollectionAssert.AreEqual(Test01Result, result);
        }
Beispiel #2
0
        public void URLifyTest(string input, string expectedResult)
        {
            var result = URLify.Run(input);

            Assert.Equal(expectedResult, result);
        }