有谁知道如何在测试套件中运行的测试用例中选择部分测试方法?

发布于 2024-09-06 19:12:59 字数 281 浏览 2 评论 0原文

例如,一个名为ExampleTest的测试用例

ExampleTest {
    testA{};
    testB{};
    testC();
}

我可以使用TestSuite.addTestSuite(ExampleTest.class);运行所有此类,

但是,如何选择testAtestB< /code> 遇到 TestSuite

For example, a test case named ExampleTest

ExampleTest {
    testA{};
    testB{};
    testC();
}

I could run all this class with TestSuite.addTestSuite(ExampleTest.class);

but, how to select testA and testB run into TestSuite?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

云之铃。 2024-09-13 19:12:59

2 个想法:

  • 看看根据您的分区将 ExampleTest 分成 2 个测试类是否有意义
  • ,否则使用类别来标记您的测试,然后运行属于以下类别的测试特定类别。在 NUnit 中它更简单,JUnit 似乎要求您创建一个空/标记接口来完成此任务。 示例链接代码

2 Ideas:

  • See if it makes sense to split ExampleTest into 2 test classes based on your partition
  • Otherwise use Categories to tag your tests and then run tests which belong to a specific category. Its simpler in NUnit, JUnit seems to require you to create an empty/ marker interface to get this done. A sample link with code.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文