我正在拼命地尝试使用 Zend Framework 1.11 使 PHPUnit 工作。在我的 phpunit.xml 中,我需要确定它指向的位置。
<phpunit bootstrap="./bootstrap.php" colors="false">
<testsuite name="ApplicationTestSuite">
<directory>./application</directory>
<directory>./library/</directory>
</testsuite>
<filter>
<whitelist>
<directory suffix=".php">../application</directory>
<directory suffix=".php">../library/</directory>
<exclude>
<directory suffix=".phtml">../applications/views</directory>
<file>../applications/Bootstrap.php</file>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="./log/coverage" charset="UTF-8"
yui="true" highlight="false" lowUpperBound="35" highLowerBound="70"/>
</logging>
</phpunit>
这一切:
./Application
./library
../application/Bootstrap.php
指向测试目录而不是应用程序目录,对吗?
因为我总是有一个致命错误:require_once:打开所需的controllerTestCase.php失败...
在此先感谢您的帮助