PHPUnit_Framework_Assert::assertFileNotIsReadable PHP Method

assertFileNotIsReadable() public static method

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