assertIsWritable() public static method

Asserts that a file/dir exists and is writable.
public static assertIsWritable ( string $filename, string $message = '' )
$filename string
$message string
Esempio n. 1
0
 public function isWritable()
 {
     $this->isExist();
     Assert::assertIsWritable($this->actual, $this->description);
     return $this;
 }