You are here

function assertFileNotExists in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \assertFileNotExists()

Asserts that a file does not exist.

@since Method available since Release 3.0.0

Parameters

string $filename:

string $message:

File

vendor/phpunit/phpunit/src/Framework/Assert/Functions.php, line 736

Code

function assertFileNotExists($filename, $message = '') {
  return call_user_func_array('PHPUnit_Framework_Assert::assertFileNotExists', func_get_args());
}