assertDirectoryExists()
assertDirectoryExists(string $directory[, string $message = ''])
当 $directory
所指定的目录不存在时报告错误,错误讯息由 $message
指定。
assertDirectoryNotExists()
是与之相反的断言,并接受相同的参数。
例 A.11: assertDirectoryExists() 的用法
- <?php
- use PHPUnit\Framework\TestCase;
- class DirectoryExistsTest extends TestCase
- {
- public function testFailure()
- {
- $this->assertDirectoryExists('/path/to/directory');
- }
- }
- ?>
phpunit DirectoryExistsTest
- PHPUnit 6.5.0 by Sebastian Bergmann and contributors.
- F
- Time: 0 seconds, Memory: 4.75Mb
- There was 1 failure:
- 1) DirectoryExistsTest::testFailure
- Failed asserting that directory "/path/to/directory" exists.
- /home/sb/DirectoryExistsTest.php:6
- FAILURES!
- Tests: 1, Assertions: 1, Failures: 1.