/** * @return Result */ public function loadResult() { if (is_null($this->result)) { $this->loadFetcher(); $this->result = $this->fetcher->fetchAll(); } return $this->result; }
public function testGetNumRowsAfterFetching() { $this->fetcher->fetchAll(); $this->assertEquals(4, $this->fetcher->getNumRows()); }