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

            Assert.Same(actual, actual.RemoveAllExcept(value ?? string.Empty));

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