The assertFileNotEquals() function is a builtin function in PHPUnit and is used to assert whether the actual file content is different from expected file content or not. This assertion will return true in the case if the expected file content is not-equals to actual file content else returns false. In case of true the asserted test case got passed else test case got failed.
Syntax:
assertFileNotEquals(string $expected, string $actual[, string $message = ''])
Parameters: This function accepts three parameters as mentioned above and described below:
- $expected: This parameter is of string type that represents the expected file path.
- $actual:This parameter is of string type that represents the actual file path.
- $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 assertFileNotEquals() function in PHPUnit:
Example 1:
PHP
<?php
use PHPUnit\Framework\TestCase;
class GeeksPhpunitTestCase extends TestCase
{
public function testNegativeTestcaseForassertFileNotEquals()
{
$expected = "/home/bittu/Documents" ;
$actual = "/home/bittu/Documents" ;
$this ->assertFileNotEquals(
$expected ,
$actual ,
"actual file content is equals to expected file content"
);
}
}
?>
|
Output:
PHPUnit 8.5.8 by Sebastian Bergmann and contributors.
F 1 / 1 (100%)
Time: 116 ms, Memory: 10.00 MB
There was 1 failure:
1) GeeksPhpunitTestCase::testNegativeTestcaseForassertFileNotEquals
actual file content is equals to expected file content
Failed asserting that file "/home/bittu/Documents" exists.
/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 testPositiveTestcaseForassertFileNotEquals()
{
$expected = "/home/bittu/Documents/php/demo.txt" ;
$actual = "/home/bittu/Documents/php/file1.php" ;
$this ->assertFileNotEquals(
$expected ,
$actual ,
"actual file content is equals to expected file content"
);
}
}
?>
|
Output:
PHPUnit 8.5.8 by Sebastian Bergmann and contributors.
. 1 / 1 (100%)
Time: 91 ms, Memory: 10.00 MB
OK (1 test, 3 assertions)
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
18 Aug, 2020
Like Article
Save Article