@covers PHPUnit_Framework_Assert::assertSame
public function testAssertSame2() {
$this
->assertSame(TRUE, TRUE);
$this
->assertSame(FALSE, FALSE);
try {
$this
->assertSame(TRUE, FALSE);
} catch (PHPUnit_Framework_AssertionFailedError $e) {
return;
}
$this
->fail();
}