PHPUnit_Framework_Assert::assertFileNotIsWritable PHP 메소드

assertFileNotIsWritable() 공개 정적인 메소드

Asserts that a file exists and is not writable.
public static assertFileNotIsWritable ( string $file, string $message = '' )
$file string
$message string
    public static function assertFileNotIsWritable($file, $message = '')
    {
        self::assertFileExists($file, $message);
        self::assertNotIsWritable($file, $message);
    }
PHPUnit_Framework_Assert