_generated\FunctionalTesterActions::cantSeeFileFound PHP Method

cantSeeFileFound() public method

Checks if file does not exist in path
See also: Codeception\Module\Filesystem::dontSeeFileFound()
public cantSeeFileFound ( $filename, string $path = null )
$filename
$path string Conditional Assertion: Test won't be stopped on fail
    public function cantSeeFileFound($filename, $path = null)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeFileFound', func_get_args()));
    }
FunctionalTesterActions