public void RunTest01() { URLify test = new URLify("Hello There ".ToCharArray(), 11); var result = test.Run(); CollectionAssert.AreEqual(Test01Result, result); }
public void URLifyTest(string input, string expectedResult) { var result = URLify.Run(input); Assert.Equal(expectedResult, result); }