PhpUnit 和 PhpRack 有什么区别?
我知道它们都是用于测试的,但我在这里没有找到太多有关 PhpRack 的信息。我们可以在项目中一起使用它们吗?或者只有一个可以达到目的?
I know they both are for testing but I did not find much information about PhpRack here. Can we use them together in a project? Or only one can serve the purpose?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PHPUnit 是一个单元测试框架。单元测试从离散代码单元(例如类或方法)的角度考虑软件测试。
PHPRack 是一个集成测试框架。集成测试考虑测试单独的软件模块/系统如何在生产环境中集成在一起。
单元测试和集成测试不是一回事。开发环境可以同时使用两者。
PHPUnit is a unit testing framework. Unit testing considers the testing of software from the perspective of discreet units of code, such as a class or method.
PHPRack is an integration testing framework. Integration testing considers the testing of how separate software modules/systems integrate together in a production environment.
Unit testing and integration testing are not the same thing. A development environment can use both.