public void FixParenthesesTest() { const string source = @"(Hello)"; const string expected = "( Hello )"; string actual = WhitespaceFixer.Fix(source); Assert.AreEqual(expected, actual); }
public void FixTest() { const string source = @" The quick brown fox "; const string expected = "The quick brown fox"; string actual = WhitespaceFixer.Fix(source); Assert.AreEqual(expected, actual); }