igaster\laravelTheme\Tests\TestCase\TestCaseWithDatbase::seeInDatabase PHP Method

seeInDatabase() protected method

-----------------------------------------------
protected seeInDatabase ( $table, array $data, $connection = null )
$data array
    protected function seeInDatabase($table, array $data, $connection = null)
    {
        $database = $this->database;
        $count = $database->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;
    }