protected function DrupalTestCase::assertNotEqual

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

Check to see if two values are not equal.

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.

29 calls to DrupalTestCase::assertNotEqual()
DatabaseConnectionTestCase::testConnectionOptions in drupal-7.x/modules/simpletest/tests/database_test.test
Tests the connection options of the active database.
DatabaseSelectComplexTestCase::testDefaultJoin in drupal-7.x/modules/simpletest/tests/database_test.test
Test simple JOIN statements.
DatabaseSelectComplexTestCase::testJoinTwice in drupal-7.x/modules/simpletest/tests/database_test.test
Confirm we can join on a single table twice with a dynamic alias.
DatabaseSelectTestCase::testRandomOrder in drupal-7.x/modules/simpletest/tests/database_test.test
Test that random ordering of queries works.
DrupalHtmlToTextTestCase::testDrupalHtmltoTextRemoveTrailingWhitespace in drupal-7.x/modules/simpletest/tests/mail.test
Tests that drupal_wrap_mail() removes trailing whitespace before newlines.

... See full list

File

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

Class

DrupalTestCase
Base class for Drupal tests.

Code

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