@covers PHPUnit_Framework_Assert::assertStringEndsNotWith
public function testAssertStringEndsNotWith() {
$this
->assertStringEndsNotWith('suffix', 'foo');
try {
$this
->assertStringEndsNotWith('suffix', 'foosuffix');
} catch (PHPUnit_Framework_AssertionFailedError $e) {
return;
}
$this
->fail();
}