@covers PHPUnit_Framework_Constraint_IsIdentical @covers PHPUnit_Framework_Constraint_Not @covers PHPUnit_Framework_Assert::identicalTo @covers PHPUnit_Framework_Assert::logicalNot @covers PHPUnit_Framework_TestFailure::exceptionToString
public function testConstraintIsNotIdentical2() {
$a = new stdClass();
$constraint = PHPUnit_Framework_Assert::logicalNot(PHPUnit_Framework_Assert::identicalTo($a));
try {
$constraint
->evaluate($a, 'custom message');
} catch (PHPUnit_Framework_ExpectationFailedException $e) {
$this
->assertEquals(<<<EOF
custom message
Failed asserting that two variables don't reference the same object.
EOF
, PHPUnit_Framework_TestFailure::exceptionToString($e));
return;
}
$this
->fail();
}