📅  最后修改于: 2023-12-03 14:45:22.735000             🧑  作者: Mango
assertDirectoryNotIsReadable()
函数是PHP单元测试中一个用于判断目录是否不可读的断言函数。当判断为真时,测试将通过,否则测试将失败。
void assertDirectoryNotIsReadable(string $directory, string $message = '')
参数说明:
$directory
:被判断不可读的目录路径。$message
:可选参数,失败时输出的错误信息。该函数没有返回值。
假设我们有一个名为 mydir
的目录,我们希望测试该目录是否不能被读取:
public function testDirectoryNotIsReadable()
{
$directory = "mydir";
$this->assertDirectoryNotIsReadable($directory, "The directory cannot be read.");
}
如果该目录不能被读取,则测试通过。如果该目录可以被读取,则测试失败,并输出错误信息 The directory cannot be read.
。