Beispiel #1
0
        public void ChopStart_MatchFound_ReturnsStartRemoved()
        {
            var str    = "foobar";
            var result = StringUtility.ChopStart(str, "foo");

            Assert.AreEqual("bar", result);
        }