Example #1
0
        public void WithoutAtStart_NullThisArg()
        {
            string s = null;
            string textToRemoveAtStart = "something to remove";

            Assert.Throws(typeof(ArgumentNullException), () => StringLib.WithoutAtStart(s, textToRemoveAtStart));
        }