您好我目前正在通过 ZF2 用户指南尝试在骨架应用程序上运行 PHPUnit 测试,如此处所述http://zf2.readthedocs.org/en/latest/user-guide/unit-testing.html。
但是,即使我没有编辑模块并且每次在 Zend Studio 中运行 PHPUnit 测试时都从教程中复制了所有文件,我也会收到此错误
错误:
Fatal error: Class 'ApplicationTest\Bootstrap' not found in C:\Program Files (x86)\Zend\Apache2\htdocs\exerciseDB\module\Application\test\ApplicationTest\Controller\IndexControllerTest.php on line 24
但是当我点击 Bootstrap::getServiceManager(); 在第 24 行 Zend Studio 将我带到正确的方法。
文件结构:
module
|_Application
|_config
|_language
|_src
|_test
|_ApplicationTest
| |_Controller
| |_IndexControllerTest.php
|_Bootstrap.php
|_phpunit.xml.dist
|_TestConfig.php.dist
谁能告诉我哪里出错了?