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