PHPUnit_Framework_Assert::assertFileIsWritable PHP Method

assertFileIsWritable() public static method

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