我想调用我的zend-framework模型并使用AuthenticationControllerTest.php
中的函数,但是当我从终端运行它时出现错误。
- -MyZendproject
- -application
-model
-testmodel
- +public
- -tests
- aplication
- controller
- .AuthenticationControllerTest.php
这是我的AuthenticationControllerTest.php
文件
<?php
require_once `PHPUnit/Framework/TestCase.php`;
defined(`APPLICATION_PATH`)
|| define(`APPLICATION_PATH`, realpath(dirname(__FILE__) . `/../application`));
// Define application environment
defined(`APPLICATION_ENV`) || define(`APPLICATION_ENV`, `tests`);
// Ensure library/ is on include_path
set_include_path(implode(PATH_SEPARATOR,
array(realpath(APPLICATION_PATH . `../../../library`), get_include_path())));
// Zend_Application
require_once `Zend/Application.php`;
$application = new Zend_Application(
APPLICATION_ENV,
realpath(APPLICATION_PATH .`configs/application.ini`)
);
class AuthenticationControllerTest extends PHPUnit_Framework_TestCase
{
public function testLoginRetriespLogin() {
$testmodel = new Model_testmodel_Object();//my model
}
}
但是当从终端“phpunit AuthenticationControllerTest”运行它时,它会给我错误:
$ phpunit AuthenticationControllerTest
.. FPHP致命错误:第146行的/var/www/versioned/pm160form/tests/application/controllers/AuthenticationControllerTest.php中找不到类'Model_testmodel_Object'
答案 0 :(得分:0)
看起来您的测试套装文件夹未解析为实际的应用程序文件夹。了解你的方式
|| define(`APPLICATION_PATH`, realpath(dirname(__FILE__) . `/../application`));
但您的dirname当前指向test / application / controller目录,当然,它没有您的实际应用程序。尝试指向位于顶部根目录下的应用程序文件夹,
|| define(`APPLICATION_PATH`, realpath(dirname(__FILE__) . `/../../../application`));
另外,请注意遵循http://framework.zend.com/manual/1.12/en/zend.test.phpunit.html中描述的在Zend Framework中使用PHP单元的标准。在自动加载器工作之前,框架需要完全自举。