@covers PHPUnit_Framework_Assert::assertStringStartsWith
public function testAssertStringStartsWith() {
$this
->assertStringStartsWith('prefix', 'prefixfoo');
try {
$this
->assertStringStartsWith('prefix', 'foo');
} catch (PHPUnit_Framework_AssertionFailedError $e) {
return;
}
$this
->fail();
}