@covers PHPUnit_Framework_Constraint_IsEqual @covers PHPUnit_Framework_Constraint_Not @covers PHPUnit_Framework_Assert::equalTo @covers PHPUnit_Framework_Assert::logicalNot @covers PHPUnit_Framework_TestFailure::exceptionToString
public function testConstraintIsNotEqual() {
$constraint = PHPUnit_Framework_Assert::logicalNot(PHPUnit_Framework_Assert::equalTo(1));
$this
->assertTrue($constraint
->evaluate(0, '', TRUE));
$this
->assertFalse($constraint
->evaluate(1, '', TRUE));
$this
->assertEquals('is not equal to 1', $constraint
->toString());
$this
->assertEquals(1, count($constraint));
try {
$constraint
->evaluate(1);
} catch (PHPUnit_Framework_ExpectationFailedException $e) {
$this
->assertEquals(<<<EOF
Failed asserting that 1 is not equal to 1.
EOF
, PHPUnit_Framework_TestFailure::exceptionToString($e));
return;
}
$this
->fail();
}