使用 Zend Framework/Doctrine 2.0 进行单元测试
我想为我的 Zend Framework/Doctrine 2.0 应用程序编写单元测试,但我不太明白如何在 ZF 中设置单元测试。另外,我想将 Doctrine 2.0 包含在这些单元测试中。我该如何设置呢?你能给我举个例子吗?
谢谢
I wanted to write unit tests for my Zend Framework/Doctrine 2.0 application, but I don't quite understand how to set up unit testing in ZF. Also, I would like to include Doctrine 2.0 in those unit tests. How would I go about setting this up? Can you point me to an example?
Thank You
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了设置单元测试,我在测试目录中创建了 phpunit (phpunit.xml) 的配置文件和 TestHelper.php。配置基本上告诉 phpunit 需要执行哪个单元测试以及需要在覆盖范围中跳过哪些文件夹和文件。在我的配置中,它只是应用程序和库文件夹中将要执行的所有单元测试文件。
Testhelper 需要通过所有单元测试来扩展。
phpunit.xml
TestHelper.php
这仅涵盖 ZF 和 PHPunit 的初始设置
To setup the unit tests I created a configuration file for phpunit (phpunit.xml) and a TestHelper.php in the test directory. The configuration basically says to phpunit which unit test needs to be executed and wich folders and files needs to be skipped in the coverage. In my config it just are all the unit test files in the application and library folder that are going to be executed.
The Testhelper needs to be extended by all your unit tests.
phpunit.xml
TestHelper.php
This only covers the initial setup for ZF and PHPunit