Example #1
0
        public void op_RemoveAnyFromEnd_IEnumerableOfString()
        {
            var actual = new MutableString("Example");

            Assert.Same(actual, actual.RemoveAnyFromEnd("test", null, string.Empty, "ample"));

            Assert.Equal(new MutableString("Ex"), actual);
        }