Inheritance: extends PHPUnit_Framework_Constraint
    /**
     * @covers PHPUnit_Framework_Constraint_IsEmpty
     * @covers PHPUnit_Framework_TestFailure::exceptionToString
     */
    public function testConstraintIsEmpty2()
    {
        $constraint = new PHPUnit_Framework_Constraint_IsEmpty();
        try {
            $constraint->evaluate(array('foo'), 'custom message');
        } catch (PHPUnit_Framework_ExpectationFailedException $e) {
            $this->assertEquals(<<<EOF
custom message
Failed asserting that an array is empty.

EOF
, PHPUnit_Framework_TestFailure::exceptionToString($e));
            return;
        }
        $this->fail();
    }
Example #2
0
 /**
  * @covers PHPUnit_Framework_Constraint_IsEmpty
  */
 public function testConstraintIsEmpty2()
 {
     $constraint = new PHPUnit_Framework_Constraint_IsEmpty();
     try {
         $constraint->fail(array('foo'), 'custom message');
     } catch (PHPUnit_Framework_ExpectationFailedException $e) {
         $this->assertEquals("custom message\nFailed asserting that \nArray\n(\n    [0] => foo\n)\n is empty.", $e->getDescription());
         return;
     }
     $this->fail();
 }