对 JUNIT4 使用多个 @parameters

发布于 2024-12-04 14:01:33 字数 228 浏览 0 评论 0原文

我正在尝试在 JUNIT4 中编写参数化测试,但我不知道如何制作多个参数,例如:

@parameter1 {1,2,3,4}

@test1 运行测试

使用@parameter1 @parameter2 {3,55,66,77}

@test2 使用@parameters2运行测试

任何人都可以为我提供一个示例片段,我将不胜感激。

谢谢。

I am trying to write parameterize test in JUNIT4 and I don't know how to make multiple parameters for instance :

@parameter1
{1,2,3,4}

@test1
run test using @parameter1

@parameter2
{3,55,66,77}

@test2
run test using @parameters2

Could anyone provide me with a sample snippet, that would be greatly appreciated.

thank you.

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

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

发布评论

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

评论(1

百善笑为先 2024-12-11 14:01:33

看来您可以利用 @Theories 和 @TestedOn

import org.junit.experimental.theories.Theories;
import org.junit.experimental.theories.Theory;
import org.junit.experimental.theories.suppliers.TestedOn;
import org.junit.runner.RunWith;

@RunWith(Theories.class)
public class SuppliedByTest {

  @Theory
  public void test1(@TestedOn(ints = { 2, 3, 4, 7, 13, 23, 42 }) int i) {
     System.out.println(i);
  }

  @Theory
  public void test2(@TestedOn(ints = { 6, 3, 4, 7, 13, 23, 42 }) int i) {
     System.out.println(i);
  }
}

Looks like you could take advantage of the @Theories and @TestedOn.

import org.junit.experimental.theories.Theories;
import org.junit.experimental.theories.Theory;
import org.junit.experimental.theories.suppliers.TestedOn;
import org.junit.runner.RunWith;

@RunWith(Theories.class)
public class SuppliedByTest {

  @Theory
  public void test1(@TestedOn(ints = { 2, 3, 4, 7, 13, 23, 42 }) int i) {
     System.out.println(i);
  }

  @Theory
  public void test2(@TestedOn(ints = { 6, 3, 4, 7, 13, 23, 42 }) int i) {
     System.out.println(i);
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文