Example #1
0
        public void op_RemoveWhiteSpace(string expected,
                                        string text)
        {
            var actual = new MutableString(text);

            Assert.Same(actual, actual.RemoveWhiteSpace());

            Assert.Equal(new MutableString(expected), actual);
        }