1 backdrop_web_test_case.php | protected BackdropTestCase::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.:
File
- core/
modules/ simpletest/ backdrop_web_test_case.php, line 446
Class
- BackdropTestCase
- Base class for Backdrop 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);
}