我想在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');
}
}
我尝试了很多东西,但没有真正奏效。某些代码更改了“找不到默认模块”的错误。
感谢您的帮助:)
答案 0 :(得分:1)
好的,我发现了问题:
在application.ini中,我只为开发环境放置了数据库配置,而单元测试仍在使用测试环境配置。
问题解决了!