@covers PHPUnit_Framework_Constraint_TraversableContains @covers PHPUnit_Framework_TestFailure::exceptionToString
public function testConstraintArrayContains2() {
$constraint = new PHPUnit_Framework_Constraint_TraversableContains('foo');
try {
$constraint
->evaluate(array(
'bar',
), 'custom message');
} catch (PHPUnit_Framework_ExpectationFailedException $e) {
$this
->assertEquals(<<<EOF
custom message
Failed asserting that an array contains 'foo'.
EOF
, PHPUnit_Framework_TestFailure::exceptionToString($e));
return;
}
$this
->fail();
}