0

我想在 ZF 项目中使用单元测试,所以我创建了测试类,但这里是错误:

致命错误:在 ...\CardMapper.php 中的非对象上调用成员函数 select()

相关线路是:

$this->db = Zend_Db_Table_Abstract::getDefaultAdapter();

$select = $this->db->select()->from(array('c' => 'cards'));

当我使用浏览器时没有问题。

这是我的 phpunit.xml(来自另一个没有数据库的 zf 项目):

<phpunit bootstrap="./bootstrap.php">
    <testsuite name="Application Test Suite">
        <directory>./application</directory>
    </testsuite>
    <testsuite name="Library Test Suite">
        <directory>./library</directory>
    </testsuite>

    <filter>
        <whitelist>
            <directory suffix=".php">../../library/Zend</directory>
        </whitelist>
    </filter>
</phpunit>

bootstrap.php:

<?php

// Define path to application directory
defined('APPLICATION_PATH')
    || define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/../application'));

// Define application environment
defined('APPLICATION_ENV')
    || define('APPLICATION_ENV', (getenv('APPLICATION_ENV') ? getenv('APPLICATION_ENV') : 'testing'));

// Ensure library/ is on include_path
set_include_path(implode(PATH_SEPARATOR, array(
    realpath(APPLICATION_PATH . '/../library'),
    get_include_path(),
)));

require_once 'Zend/Loader/Autoloader.php';
Zend_Loader_Autoloader::getInstance();

和测试类:

<?php

class CardControllerTest extends Zend_Test_PHPUnit_ControllerTestCase
{

    public function setUp()
    {
        $this->bootstrap = new Zend_Application(APPLICATION_ENV, APPLICATION_PATH . '/configs/application.ini');
        parent::setUp();
    }

    public function testList()
    {
        $this->dispatch('/card');
    }
}

我尝试了很多东西,但都没有真正奏效。一些代码将错误更改为“未找到默认模块”。

谢谢您的帮助 :)

4

1 回答 1

1

好的,我发现了问题:

在 application.ini 中,我只放置了开发环境的数据库配置,而单元测试仍在使用测试环境配置。

所以问题解决了!

于 2013-04-24T08:22:37.510 回答