/**
  * @covers Zend\Db\TableGateway\AbstractTableGateway::getAdapter
  */
 public function testGetAdapter()
 {
     $this->assertSame($this->mockAdapter, $this->table->getAdapter());
 }
 public function rollbackTransaction()
 {
     $this->tableGateway->getAdapter()->getDriver()->getConnection()->rollback();
 }