PHPUnit assertFileExists() Function Last Updated : 18 Aug, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report The assertFileExists() function is a builtin function in PHPUnit and is used to check whether an file path exists or not. This assertion will return true in the case if given file path exists else return false. In case of true the asserted test case got passed else test case got failed. Syntax: assertFileExists(string $filename[, string $message = '']) Parameters: This function accepts two parameters as mentioned above and described below: $filename: This parameter is a string that denotes the 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 assertFileExists() function in PHPUnit: Example 1: PHP <?php use PHPUnit\Framework\TestCase; class GeeksPhpunitTestCase extends TestCase { public function testNegativeTestcaseForAssertFileExists() { $filename = "/home/Documents/geeksDoesNotExist/"; // Assert function to test whether given // file path exists or not $this->assertFileExists( $filename, "given filename doesn't exists" ); } } ?> Output: PHPUnit 8.5.8 by Sebastian Bergmann and contributors. F 1 / 1 (100%) Time: 391 ms, Memory: 10.00 MB There was 1 failure: 1) GeeksPhpunitTestCase::testNegativeTestcaseForAssertFileExists given filename doesn't exists Failed asserting that file "/home/Documents/geeksDoesNotExist/" exists. /home/lovely/Documents/php/test.php:15 FAILURES! Tests: 1, Assertions: 1, Failures: 1. Example 2: PHP <?php use PHPUnit\Framework\TestCase; class GeeksPhpunitTestCase extends TestCase { public function testPositiveTestcaseForAssertFileExists() { $filename = "/home/bittu/Documents/php/"; // Assert function to test whether given // file name exists or not $this->assertFileExists( $filename, "filename doesn't exists" ); } } ?> Output: PHPUnit 8.5.8 by Sebastian Bergmann and contributors. . 1 / 1 (100%) Time: 88 ms, Memory: 10.00 MB OK (1 test, 1 assertion) Reference: https://phpunit.readthedocs.io/en/8.2/assertions.html#assertfileexists Comment More infoAdvertise with us Next Article PHPUnit assertFileExists() Function S shubham_singh Follow Improve Article Tags : Web Technologies PHP PHP-PHPUnit Similar Reads PHPUnit assertFileNotExists() Function The assertFileNotExists() function is a builtin function in PHPUnit and is used to assert whether a file exists at a given path or not. This assertion will return true in the case if the given file path doesnât exist else return false. In case of true the asserted test case got passed else test case 2 min read PHPUnit assertFileEquals() Function The assertFileEquals() function is a builtin function in PHPUnit and is used to assert whether the actual file content is exactly the same as the content of the expected file or not. This assertion will return true in the case if the expected file content is the same as the actual file content else 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 | assertDirectoryExists() Function The assertDirectoryExists() function is a builtin function in PHPUnit and is used to assert whether an directory path exists or not. This assertion will return true in the case if given directory path exists else return false. In case of true the asserted test case got passed else test case got fail 2 min read PHPUnit assertFileIsWritable() Function The assertFileIsWritable() function is a builtin function in PHPUnit and is used to assert whether the file specified is a file is writable or not. This assertion will return true in the case if either given filename exists and is writable else return false. In case of true the asserted test case go 2 min read Like