PHPUnit_Framework_Assert::identicalTo PHP Method

identicalTo() public static method

Returns a PHPUnit_Framework_Constraint_IsIdentical matcher object.
public static identicalTo ( mixed $value ) : PHPUnit_Framework_Constraint_IsIdentical
$value mixed
return PHPUnit_Framework_Constraint_IsIdentical
    public static function identicalTo($value)
    {
        return new PHPUnit_Framework_Constraint_IsIdentical($value);
    }

Usage Example

 /**
  * @covers PHPUnit_Framework_Constraint_IsIdentical
  * @covers PHPUnit_Framework_Constraint_Not
  * @covers PHPUnit_Framework_Assert::identicalTo
  * @covers PHPUnit_Framework_Assert::logicalNot
  */
 public function testConstraintIsNotIdentical2()
 {
     $a = new stdClass();
     $constraint = PHPUnit_Framework_Assert::logicalNot(PHPUnit_Framework_Assert::identicalTo($a));
     try {
         $constraint->fail($a, 'custom message', TRUE);
     } catch (PHPUnit_Framework_ExpectationFailedException $e) {
         $this->assertEquals("custom message\nFailed asserting that \nstdClass Object\n(\n)\n is not identical to an object of class \"stdClass\".", $e->getDescription());
         return;
     }
     $this->fail();
 }
All Usage Examples Of PHPUnit_Framework_Assert::identicalTo
PHPUnit_Framework_Assert