protected function TestBase::assertNotIdentical

Check to see if two values are not identical.

Parameters

$first: The first value to check.

$second: The second value to check.

$message: (optional) A message to display with the assertion. Do not translate messages: use format_string() to embed variables in the message text, not t(). If left blank, a default message will be displayed.

$group: (optional) The group this message is in, which is displayed in a column in test output. Use 'Debug' to indicate this is debugging output. Do not translate this string. Defaults to 'Other'; most tests do not override this default.

Return value

TRUE if the assertion succeeded, FALSE otherwise.

20 calls to TestBase::assertNotIdentical()
BackendChainImplementationUnitTest::testDelete in drupal/core/modules/system/lib/Drupal/system/Tests/Cache/BackendChainImplementationUnitTest.php
Test that delete will propagate.
BackendChainImplementationUnitTest::testDeleteTagsPropagation in drupal/core/modules/system/lib/Drupal/system/Tests/Cache/BackendChainImplementationUnitTest.php
Test that the delete tags operation is propagated to all backends in the chain.
BackendChainImplementationUnitTest::testGet in drupal/core/modules/system/lib/Drupal/system/Tests/Cache/BackendChainImplementationUnitTest.php
Test the get feature.
BackendChainImplementationUnitTest::testGetHasPropagated in drupal/core/modules/system/lib/Drupal/system/Tests/Cache/BackendChainImplementationUnitTest.php
Ensure get values propagation to previous backends.
BackendChainImplementationUnitTest::testGetMultipleHasPropagated in drupal/core/modules/system/lib/Drupal/system/Tests/Cache/BackendChainImplementationUnitTest.php
Ensure get multiple values propagation to previous backends.

... See full list

File

drupal/core/modules/simpletest/lib/Drupal/simpletest/TestBase.php, line 498
Definition of Drupal\simpletest\TestBase.

Class

TestBase
Base class for Drupal tests.

Namespace

Drupal\simpletest

Code

protected function assertNotIdentical($first, $second, $message = '', $group = 'Other') {
  return $this
    ->assert($first !== $second, $message ? $message : t('Value @first is not identical to value @second.', array(
    '@first' => var_export($first, TRUE),
    '@second' => var_export($second, TRUE),
  )), $group);
}