The assertNotEqualsIgnoringCase() function is a builtin function in PHPUnit and is used to assert whether the expected string is not equal to actual string but ignoring the case. This assertion will return true in the case if the actual string is not equal to expected string ignoring case-sensitivity, else return false. In case of true the asserted test case got passed else test case got failed.
syntax:
assertnotEqualsIgnoringCase(mixed $expected, mixed $actual[, string $message = '']
Parameters: This function accepts three parameters as mentioned above and described below:
- $expected: This parameter is a string that represents the expected data.
- $actual: This parameter is a string that represents the actual data.
- $message: This parameter takes a string value. When the test case got failed this string message got displayed as an error message.
Below programs illustrate the assertnotEqualsIgnoringCase() function:
Example 1:
PHP
<?php use PHPUnit\Framework\TestCase; class GeeksPhpunitTestCase extends TestCase { public function testNegativTestcaseForAssertNotequalIgnoringCase() { $expected = "Geeks" ; $actual = "geEks" ; // assert function to test whether expected // is not equals to actual ignoring case $this ->assertNotEqualsIgnoringCase( $actual , $expected , "expected string is equal to actual ignoring case" ) ; } } ?> |
Output:
PHPUnit 8.5.8 by Sebastian Bergmann and contributors. F 1 / 1 (100%) Time: 91 ms, Memory: 10.00 MB There was 1 failure: 1) GeeksPhpunitTestCase::testpositivTestcaseForAssertNotequalIgnoringCase expected string is equal to actual ignoring case Failed asserting that 'Geeks' is not equal to 'geEks'. /home/lovely/Documents/php/test.php:17 FAILURES! Tests: 1, Assertions: 1, Failures: 1.
Example 2:
PHP
<?php use PHPUnit\Framework\TestCase; class GeeksPhpunitTestCase extends TestCase { public function testPositivTestcaseForAssertNotequalIgnoringCase() { $expected = "Geekss" ; $actual = "geEks" ; // assert function to test whether expected // is not equals to actual string ignoring case $this ->assertNotEqualsIgnoringCase( $actual , $expected , "expected string is equal to actual ignoring case" ) ; } } ?> |
Output:
PHPUnit 8.5.8 by Sebastian Bergmann and contributors. . 1 / 1 (100%) Time: 91 ms, Memory: 10.00 MB OK (1 test, 1 assertion)