public function testDeletePrimary()
 {
     /** @var RowGateway $row */
     $row = $this->table->create(['fullName' => 'Test', 'email' => '*****@*****.**']);
     $row->save();
     $this->assertEquals(1, $this->table->deletePrimary($row['id']));
 }