@covers PHPUnit_Framework_Assert::attributeEqualTo @covers PHPUnit_Framework_Constraint_Attribute @covers PHPUnit_Framework_TestFailure::exceptionToString
public function testAttributeEqualTo2() {
$object = new ClassWithNonPublicAttributes();
$constraint = PHPUnit_Framework_Assert::attributeEqualTo('foo', 2);
try {
$constraint
->evaluate($object, 'custom message');
} catch (PHPUnit_Framework_ExpectationFailedException $e) {
$this
->assertEquals(<<<EOF
custom message
Failed asserting that attribute "foo" is equal to 2.
EOF
, PHPUnit_Framework_TestFailure::exceptionToString($e));
return;
}
$this
->fail();
}