_generated\FunctionalTesterActions::dontSeeRecord PHP Method

dontSeeRecord() public method

Checks that record does not exist in database. php $I->dontSeeRecord('app\models\User', array('name' => 'davert'));
See also: Codeception\Module\Yii2::dontSeeRecord()
public dontSeeRecord ( $model, array $attributes = null )
$model
$attributes array
    public function dontSeeRecord($model, $attributes = null)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeRecord', func_get_args()));
    }
FunctionalTesterActions