protected function DrupalTestCase::assertIdentical
Check to see if two values are identical.
Parameters
$first: The first value to check.
$second: The second value to check.
$message: The message to display along with the assertion.
$group: The type of assertion - examples are "Browser", "PHP".
Return value
TRUE if the assertion succeeded, FALSE otherwise.
264 calls to DrupalTestCase::assertIdentical()
- AJAXFrameworkTestCase::testLazyLoad in drupal-7.x/
modules/ simpletest/ tests/ ajax.test - Test that new JavaScript and CSS files added during an AJAX request are returned.
- AJAXFrameworkTestCase::testLazyLoad in drupal-7.x/
modules/ simpletest/ tests/ ajax.test - Test that new JavaScript and CSS files added during an AJAX request are returned.
- ArrayDiffUnitTest::testArrayDiffAssocRecursive in drupal-7.x/
modules/ simpletest/ tests/ common.test - Tests drupal_array_diff_assoc_recursive().
- ArrayDiffUnitTest::testArrayDiffAssocRecursive in drupal-7.x/
modules/ simpletest/ tests/ common.test - Tests drupal_array_diff_assoc_recursive().
- BookTestCase::checkBookNode in drupal-7.x/
modules/ book/ book.test - Checks the outline of sub-pages; previous, up, and next.
Archivo
- drupal-7.x/
modules/ simpletest/ drupal_web_test_case.php, line 365
Class
- DrupalTestCase
- Base class for Drupal tests.
Código
protected function assertIdentical($first, $second, $message = '', $group = 'Other') {
return $this->assert($first === $second, $message ? $message : t('Value @first is identical to value @second.', array('@first' => var_export($first, TRUE), '@second' => var_export($second, TRUE))), $group);
}