Skip to content
Related Articles
Open in App
Not now

Related Articles

PHPUnit assertFileNotEquals() Function

Improve Article
Save Article
Like Article
  • Last Updated : 18 Aug, 2020
Improve Article
Save Article
Like Article

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"
    
        // Assert file not equal function to test whether expected 
        // file content is different to actual file content or not 
        $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"
  
        // Assert file not equal function to test whether expected 
        // file content is different from actual file content or not 
        $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)

My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!