Example #1
0
        public void Test_StringManipulator_SubstringSingleSection()
        {
            StringManipulator m = new StringManipulator();

            m.Append("hello cruel world");

            Assert.AreEqual("cruel", m.Substring(6, 5));
        }