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

notSeeInDatabase() protected method

Assert that a given where condition does not exist in the database.
protected notSeeInDatabase ( string $table, array $data, string $connection = null )
$table string
$data array
$connection string
    protected function notSeeInDatabase($table, array $data, $connection = null)
    {
        $database = $this->app->make('db');
        $connection = $connection ?: $database->getDefaultConnection();
        $count = $database->connection($connection)->table($table)->where($data)->count();
        $this->assertEquals(0, $count, sprintf('Found unexpected records in database table [%s] that matched attributes [%s].', $table, json_encode($data)));
        return $this;
    }