6

我使用了 Zend Framework 2 文档中的专辑示例并创建了一个应用程序。

现在,在使用它进行单元phpunit测试时,我在测试具有joinwith 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测试,请提供一个相同的例子。

4

1 回答 1

1

您可能想模拟对象的getAdapter方法Zend\Db\TableGateway\TableGateway。调用此方法并将其返回值传递给Zend\Db\Sql\Sql构造函数。

于 2013-04-16T05:15:49.657 回答