PHPUnit_Framework_Assert::assertDirectoryNotIsReadable PHP Method

assertDirectoryNotIsReadable() public static method

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