protected function DrupalTestCase::assertIdentical

7.x drupal_web_test_case.php protected DrupalTestCase::assertIdentical($first, $second, $message = '', $group = 'Other')

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.

131 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.
ArrayDiffUnitTest::testArrayDiffAssocRecursive in drupal-7.x/modules/simpletest/tests/common.test
Tests drupal_array_diff_assoc_recursive().
BlockHashTestCase::assertWeight in drupal-7.x/modules/block/block.test
Asserts that the block_test module's block has a given weight.
BookTestCase::checkBookNode in drupal-7.x/modules/book/book.test
Checks the outline of sub-pages; previous, up, and next.
BootstrapGetFilenameTestCase::testDrupalGetFilename in drupal-7.x/modules/simpletest/tests/bootstrap.test
Test that drupal_get_filename() works correctly when the file is not found in the database.

... See full list

File

drupal-7.x/modules/simpletest/drupal_web_test_case.php, line 365

Class

DrupalTestCase
Base class for Drupal tests.

Code

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);
}