本文介绍了我们可以使用JUNIT进行自动化集成测试吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何自动?我使用JUnit进行其中一些测试。这是解决方案之一还是完全错误的?你有什么建议?
How do you automate integration testing? I use JUnit for some of these tests. This is one of the solutions or is totally wrong? What do you suggest?
推荐答案
JUnit有效。没有限制将其限制为仅进行单元测试。我们使用JUnit,Maven和CruiseControl来进行CI。
JUnit works. There are no limitations that restrict it to being unit tests only. We use JUnit, Maven and CruiseControl to do CI.
可能有专门用于集成测试的工具,但我认为它们的用处取决于系统的类型您正在整合的组件。 JUnit适用于非UI类型测试。
There may be tools that are specific for integration testing, but I would think their usefulness is dependent on what type of system components you are integrating. JUnit will work fine for non UI type testing.
这篇关于我们可以使用JUNIT进行自动化集成测试吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!