如何在zend项目中使用zend test phpunit

时间:2011-04-14 08:24:07

标签: zend-test

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

提前感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

一个好的起点是Zend Framework documentation和PHPUnit手册:Chapter 3. Installing 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