public function Framework_ConstraintTest::testConstraintIsNotIdentical3 in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/phpunit/phpunit/tests/Framework/ConstraintTest.php \Framework_ConstraintTest::testConstraintIsNotIdentical3()
@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
File
- vendor/
phpunit/ phpunit/ tests/ Framework/ ConstraintTest.php, line 1143
Class
- Framework_ConstraintTest
- @since Class available since Release 3.0.0
Code
public function testConstraintIsNotIdentical3() {
$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 strings are not identical.
EOF
, $this
->trimnl(PHPUnit_Framework_TestFailure::exceptionToString($e)));
return;
}
$this
->fail();
}