assertNotIsReadable() public static method

Asserts that a file/dir exists and is not readable.
public static assertNotIsReadable ( string $filename, string $message = '' )
$filename string
$message string
コード例 #1
0
ファイル: FileMatcher.php プロジェクト: dekeysoft/pu-tester
 public function isNotReadable()
 {
     $this->isExist();
     Assert::assertNotIsReadable($this->actual, $this->description);
     return $this;
 }