@Test public void doesNotContainWithEmptySubstringDoesNotThrowException() throws Exception { Assert.doesNotContain("A cool chick's name is Brod. ", ""); }
@Test public void doesNotContainWithNullSearchStringDoesNotThrowException() throws Exception { Assert.doesNotContain(null, "rod"); }