_generated\FunctionalTesterActions::seeFileFound PHP 메소드

seeFileFound() 공개 메소드

Checks if file exists in path. Opens a file when it's exists php seeFileFound('UserModel.php','app/models'); ?>
또한 보기: 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()));
    }
FunctionalTesterActions