You are here

function assertFileExists in Zircon Profile 8

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

Asserts that a file exists.

@since Method available since Release 3.0.0

Parameters

string $filename:

string $message:

File

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

Code

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