@covers PHPUnit_Framework_Assert::assertEquals
public function testAssertStringEqualsNumeric() {
$this
->assertEquals('0', 0);
try {
$this
->assertEquals('0', 1);
} catch (PHPUnit_Framework_AssertionFailedError $e) {
return;
}
$this
->fail();
}