1

我是一个非常新的 zend 框架和 phpunit 测试学习者。我有一个zend项目,我想使用zend-test-phpunit来测试应用程序文件夹下的模型和控制器。我怎么能测试它?我注意到这个项目中有一个测试文件夹,所有的测试都应该在这个文件夹中完成?在这种情况下,我必须将所有控制器和模型复制到这个文件夹中吗?谁能给我一个例子?

提前感谢您的帮助!

4

1 回答 1

0

Zend Framework 文档和 PHPUnit 手册是一个很好的起点:第 3 章安装 PHPUnit

您需要使用以下内容填充phpunit.xml文件:

<phpunit bootstrap="./application/bootstrap.php" colors="true">
        <testsuite name="Application" >
                <directory>./library</directory>
                <directory>./application</directory>
        </testsuite>
        <filter>
                <whitelist>
                        <directory suffix=".php">../application</directory>
                        <directory suffix=".php">../library/My</directory>
                        <exclude>
                                <directory suffix=".phtml">../application/</directory>
                                <file>../application/Bootstrap.php</file>
                        </exclude>
                </whitelist>
        </filter>
    <logging>
        <log type="coverage-html" target="./log/report" charset="UTF-8"
        yui="true" highlight = "true" lowUpperBound="50" highLowerBound="80" />
        <log type="testdox" target="./log/testdox.html" />
    </logging>
</phpunit>

然后它只是在你的测试文件夹中从命令行运行'phpunit'。如果您希望 phpunit 生成代码覆盖率报告,那么您还需要在您的环境中启用 xdebug

于 2011-05-30T14:20:50.613 回答