public void WithoutAtStart_NullThisArg() { string s = null; string textToRemoveAtStart = "something to remove"; Assert.Throws(typeof(ArgumentNullException), () => StringLib.WithoutAtStart(s, textToRemoveAtStart)); }