@covers PHPUnit_Framework_Assert::assertNotContains
public function testAssertStringNotContainsString() {
$this
->assertNotContains('foo', 'bar');
try {
$this
->assertNotContains('foo', 'foo');
} catch (PHPUnit_Framework_AssertionFailedError $e) {
return;
}
$this
->fail();
}