assertJsonFileEqualsJsonFile()

assertJsonFileEqualsJsonFile()

1
assertJsonFileEqualsJsonFile(mixed $expectedFile, mixed $actualFile[, string $message = ''])

Reports an error identified by $message if the value of $actualFile does not match the value of $expectedFile.

Example A.33: Usage of assertJsonFileEqualsJsonFile()

1
2
3
4
5
6
7
8
9
10
11
12
<?php
use PHPUnit\Framework\TestCase;
 
class JsonFileEqualsJsonFileTest extends TestCase
{
    public function testFailure()
    {
        $this->assertJsonFileEqualsJsonFile(
          'path/to/fixture/file', 'path/to/actual/file');
    }
}
?>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
phpunit JsonFileEqualsJsonFileTest
PHPUnit 5.6.0 by Sebastian Bergmann and contributors.
 
F
 
Time: 0 seconds, Memory: 5.00Mb
 
There was 1 failure:
 
1) JsonFileEqualsJsonFile::testFailure
Failed asserting that '{"Mascot":"Tux"}' matches JSON string "["Mascott", "Tux", "OS", "Linux"]".
 
/home/sb/JsonFileEqualsJsonFileTest.php:5
 
FAILURES!
Tests: 1, Assertions: 3, Failures: 1.
doc_PHPUnit
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.