예제 #1
0
 /**
  * @covers Zend\Db\TableGateway\TableGateway::setSelectResultPrototype
  */
 public function testSetSelectResultPrototype()
 {
     $resultSet = new ResultSet();
     $this->table->setSelectResultPrototype($resultSet);
     $this->assertSame($resultSet, $this->table->getSelectResultPrototype());
 }