assertNotIsWritable() 공개 정적인 메소드

Asserts that a file/dir exists and is not writable.
public static assertNotIsWritable ( string $filename, string $message = '' )
$filename string
$message string
예제 #1
0
 public function isNotWritable()
 {
     $this->isExist();
     Assert::assertNotIsWritable($this->actual, $this->description);
     return $this;
 }