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

notSeeInDatabase() protected method

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