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

seeInDatabase() protected method

Assert that a given where condition exists in the database.
protected seeInDatabase ( string $table, array $data, string $connection = null )
$table string
$data array
$connection string
    protected function seeInDatabase($table, array $data, $connection = null)
    {
        $database = $this->app->make('db');
        $connection = $connection ?: $database->getDefaultConnection();
        $count = $database->connection($connection)->table($table)->where($data)->count();
        $this->assertGreaterThan(0, $count, sprintf('Unable to find row in database table [%s] that matched attributes [%s].', $table, json_encode($data)));
        return $this;
    }