示例#1
0
 /**
  * Asserts that two variables are equal.
  *
  * @param  mixed   $expected
  * @param  mixed   $actual
  * @param  string  $message
  * @param  float   $delta
  * @param  integer $maxDepth
  * @param  boolean $canonicalize
  * @param  boolean $ignoreCase
  */
 public static function assertEquals($expected, $actual, $message = '', $delta = 0, $maxDepth = 10, $canonicalize = FALSE, $ignoreCase = FALSE)
 {
     // Nasty cheating hack: prevent random failures on timemodified field.
     if (is_object($expected) and is_object($actual)) {
         if (property_exists($expected, 'timemodified') and property_exists($actual, 'timemodified')) {
             if ($expected->timemodified + 1 == $actual->timemodified) {
                 $expected = clone $expected;
                 $expected->timemodified = $actual->timemodified;
             }
         }
     }
     parent::assertEquals($expected, $actual, $message, $delta, $maxDepth, $canonicalize, $ignoreCase);
 }