public function testCanFetchSingleRowFromListingUsingPrimaryKey()
 {
     $ids = $this->setUpDb();
     $this->assertEquals('APPLE', $this->listing->fetchRow($this->getFields(), $ids['APPLE'])['name']);
     $this->assertEquals('ORANGE', $this->listing->fetchRow($this->getFields(), $ids['ORANGE'])['name']);
 }