Illuminate\Foundation\Testing\Concerns\InteractsWithDatabase::dontSeeInDatabase PHP Method

dontSeeInDatabase() protected method

Assert that a given where condition does not exist in the database.
protected dontSeeInDatabase ( string $table, array $data, string $connection = null )
$table string
$data array
$connection string
    protected function dontSeeInDatabase($table, array $data, $connection = null)
    {
        return $this->notSeeInDatabase($table, $data, $connection);
    }