如何选择一些测试用例来组成BAT测试(构建验收测试)?

发布于 2024-09-06 13:02:30 字数 68 浏览 5 评论 0原文

在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

温柔戏命师 2024-09-13 13:02:30

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, ...).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文