Example #1
0
 /**
  * Run test fetchAll method
  *
  * @return void
  */
 public function testFetchAll()
 {
     $this->fetchStrategyMock->expects($this->once())->method('fetchAll')->will($this->returnValue('return-value'));
     $this->assertEquals('return-value', $this->query->fetchAll());
 }