PHPUnit assertNotSame() Function Last Updated : 07 Aug, 2020 Comments Improve Suggest changes Like Article Like Report The assertNotSame() function is a builtin function in PHPUnit and is used to assert the actually obtained value to be not-same to the expected value. This assertion will return true in the case if the expected value is not-same to actual value else returns false. In case of true the asserted test case got passed else test case got failed. Syntax: assertNotSame( mixed $expected, mixed $actual, string $message = '' ) Parameters: This function accepts three parameters as shown in the above syntax. The parameters are described below: $expected: This parameter is of any type which represents the expected data.$actual: This parameter is of any type which 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 examples illustrate the assertNotSame() function in PHPUnit: Example 1: PHP <?php use PHPUnit\Framework\TestCase; class GeeksPhpunitTestCase extends TestCase { public function testNegativeForassertNotSame() { $expected = "(108) mango"; $actual = "(108) mango"; // Assert function to test whether expected // value is same as actual value or not $this->assertNotSame( $expected, $actual, "actual value is same to expected" ); } } ?> Output: PHPUnit 8.5.8 by Sebastian Bergmann and contributors. F 1 / 1 (100%) Time: 90 ms, Memory: 10.00 MB There was 1 failure: 1) GeeksPhpunitTestCase::testNegativeForassertNotSame actual value is same to expected Failed asserting that two strings are not identical. /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 testPositiveForassertNotSame() { $expected = "(108) banana"; $actual = "(108) mango"; // Assert function to test whether expected // value is same as actual value or not $this->assertNotSame( $expected, $actual, "actual value is same to expected" ); } } ?> Output: PHPUnit 8.5.8 by Sebastian Bergmann and contributors. . 1 / 1 (100%) Time: 90 ms, Memory: 10.00 MB OK (1 test, 1 assertion) Comment More infoAdvertise with us Next Article PHPUnit assertNotSame() Function S shubham_singh Follow Improve Article Tags : Web Technologies PHP PHP-PHPUnit Similar Reads PHPUnit assertSame() Function The assertSame() function is a builtin function in PHPUnit and is used to assert whether the actually obtained value is the same as the expected value or not. This assertion will return true in the case if the expected value is the same as the actual value else returns false. In case of true the ass 2 min read PHPUnit assertNotFalse() Function The assertNotFalse() function is a builtin function in PHPUnit and is used to assert the conditional value is true. This assertion will return true in the case if the conditional value is true else return false. In case of true, the asserted test case got passed else test case got failed. Syntax : a 2 min read PHPUnit assertNotTrue() Function The assertNotTrue() function is a builtin function in PHPUnit and is used to assert whether the assert value is not true. This assertion will return true in the case if the assert value is not true else returns false. In case of true the asserted test case got passed else test case got failed. Synta 2 min read PHPunit | assertNotEmpty() Function The assertNotEmpty() function is a builtin function in PHPUnit and is used to assert whether the data holder specified is non-empty or not. This assertion will return true in the case if the data holder provided is non-empty else return false. In case of true the asserted test case got passed else t 2 min read PHPUnit assertNan() Function The assertNan() function is a builtin function in PHPUnit and is used to assert whether the variable is NAN or not. This assertion will return true in the case if the variable is NAN else returns false. In case of true the asserted test case got passed else test case got failed. Syntax: assertNan(mi 2 min read PHPUnit assertIsNotScalar() Function The assertIsNotScalar() function is a builtin function in PHPUnit and is used to assert Scalar variables are those containing an integer, float, string, or boolean. This function does not consider null to be scalar. This assertion will return true in the case if the actual value is scalar else retur 2 min read PHPUnit assertFinite() Function The assertFinite() function is a builtin function in PHPUnit and is used to assert whether the actually obtained value is not INF. This assertion will return true in the case if the actual value is not INF else returns false. In case of true the asserted test case got passed else test case got faile 2 min read PHPUnit assertTrue() Function The assertTrue() function is a builtin function in PHPUnit and is used to assert whether the assert value is true or not. This assertion will return true in the case if the assert value is true else returns false. In case of true the asserted test case got passed else test case got failed. Syntax: a 2 min read PHPUnit assertNotIsWritable() Function The assertNotIsWritable() function is a builtin function in PHPUnit and is used to assert whether the assertNotIswritable specified that filename is not writable. This assertion will return true in the case if either given file name Doesn't exist and is not writable else return false. In case of tru 2 min read PHPUnit assertNotIsReadable() Function The assertNotIsReadable() function is a builtin function in PHPUnit and is used to assert whether the assertNotIsReadable specified file name is Not readable. This assertion will return true in the case if either given filename is Not readable else return false. In case of true the asserted test cas 2 min read Like