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