_generated\TestGuyActions::canSeeThisFileMatches PHP Method

canSeeThisFileMatches() public method

Checks that contents of currently opened file matches $regex
See also: Codeception\Module\Filesystem::seeThisFileMatches()
public canSeeThisFileMatches ( $regex )
$regex Conditional Assertion: Test won't be stopped on fail
    public function canSeeThisFileMatches($regex)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeThisFileMatches', func_get_args()));
    }
TestGuyActions