PHPUnit_Framework_Assert::assertFileNotIsReadable PHP Méthode

assertFileNotIsReadable() public static méthode

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