Open In App

PHPUnit assertFileNotEquals() Function

Last Updated : 18 Aug, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

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)


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads