PHPUnit_Framework_Assert::assertFileNotIsWritable PHP Method

assertFileNotIsWritable() public static method

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