PHPUnit_Framework_Assert::assertFileIsReadable PHP 메소드

assertFileIsReadable() 공개 정적인 메소드

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