如何选择一些测试用例来组成BAT测试(构建验收测试)?
在junit测试中,我是否应该创建另一个名为ExampleBAT的测试套件来执行此操作,并且该测试套件包含所选的测试用例?
In junit test, should I create another test suite named as ExampleBAT to do this, and this test suite contains the selected test cases?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
BVT/BAT 是一组简短的测试,在构建后完成并练习主要内容功能。因此,对于(大型)应用程序,JUnit 可能不是此类测试的正确选择。我将这些测试设计为手动执行或使用能够自动执行应用程序或系统测试的不同测试框架。
BVT/BAT 只是证明,构建足以创建可用的应用程序(可以执行、用户界面可访问、可以从数据库加载数据……)。
The BVT/BAT is a short set of tests which is done after the build and exercises the main functionality. So for (large) applications, JUnit might not be the right choice for this kind of tests. I'd design those test to be performed by hand or a different test framework which is capable to automate tests for applications or systems.
The BVT/BAT just proves, that the build was good enough to create a useable application (can be executed, user interface is accessible, can load data from database, ...).