我使用了 Zend Framework 2 文档中的专辑示例并创建了一个应用程序。
现在,在使用它进行单元phpunit
测试时,我在测试具有join
with say table的表时遇到了问题Account_Type
。
这是它的代码。
fetchAll
功能是
function fetachAll()
{
$sql = new Sql($this->tableGateway->getAdapter());
$select = $sql->select();
$select->from('Album')
->columns(array('id', 'name', 'account_type_id', 'managing_account_id'))
->join(array('AT' => 'account_type'), 'album.account_type_id = AT.account_type_id');
$resultSet = $this->tableGateway->selectWith($select);
return $resultSet;
}
上表的单元测试代码是。
public function testFetchAllReturnsAllAlbums()
{
$resultSet= new ResultSet();
$mockTableGateway = $this->getMock(
'Zend\Db\TableGateway\TableGateway',
array('select'),
array(),
'',
false
);
$mockTableGateway->expects($this->once())
->method('select')
->with()
->will($this->returnValue($resultSet));
$albumTable = new AlbumTable($mockTableGateway);
$this->assertSame($resultSet, $albumTable->fetchAll());
}
我收到错误这个错误
Argument 1 passed to Zend\Db\Sql\Sql::__construct() must be an instance of
Zend\Db\Adapter\Adapter, null given,
对于这一行$this->assertSame($resultSet, $albumTable->fetchAll());
方法testFetchAllReturnsAllAlbums
。
如果有人为加入做过phpunit测试,请提供一个相同的例子。