Laravel\Lumen\Testing\ApplicationTrait::seeInDatabase PHP Method

seeInDatabase() protected method

Assert that a given where condition exists in the database.
protected seeInDatabase ( string $table, array $data )
$table string
$data array
    protected function seeInDatabase($table, array $data)
    {
        $count = $this->app->make('db')->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;
    }