_generated\TestGuyActions::seeFileFound PHP Method

seeFileFound() public method

Checks if file exists in path. Opens a file when it's exists php seeFileFound('UserModel.php','app/models'); ?>
See also: Codeception\Module\Filesystem::seeFileFound()
public seeFileFound ( $filename, string $path = null )
$filename
$path string
    public function seeFileFound($filename, $path = null)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeFileFound', func_get_args()));
    }
TestGuyActions