使用参数化测试的多个实例创建JUnit测试套件

时间:2010-02-09 09:00:45

标签: java unit-testing junit junit4

我想从多个文本文件创建一个TestSuite。每个文本文件应该是一个Test并包含该测试的参数。我创建了一个测试:

@RunWith(Parameterized.class)
public class SimpleTest {
  private static String testId = "TestCase 1";
  private final String parameter;

  @BeforeClass
  public static void beforeClass() {
    System.out.println("Before class " + testId);
  }

  @AfterClass
  public static void afterClass() {
    System.out.println("After class " + testId);
  }

  @Before
  public void beforeTest() {
    System.out.println("Before test for " + testId + ":" + parameter);
  }

  @After
  public void afterTest() {
    System.out.println("After test for " + testId + ":" + parameter);
  }

  @Parameters
  public static Collection<String[]> getParameters() {
    //Normally, read text file here.
    return Lists.newArrayList(new String[] { "Testrun 1" }, new String[] { "Testrun 2" });
  }

  public SimpleTest(final String parameter) {
    this.parameter = parameter;
  }

  @Test
  public void simpleTest() {
    System.out.println("Simple test for " + testId + ":" + parameter);
  }

  @Test
  public void anotherSimpleTest() {
    System.out.println("Another simple test for " + testId + ":" + parameter);
  }
}

现在我想创建一个多次运行此测试的套件。但由于Parameterized,BeforeClass和AfterClass都只运行一次,这似乎有点不可能。

所以,总结一下:

  1. 我想多次运行一次测试。
  2. 每次我需要输入参数(如文本文件的名称)
  3. 每次应调用BeforeClass,AfterClass和Parameters函数
  4. 我宁愿不为每个文本文件创建一个子类。
  5. 这可能吗?

1 个答案:

答案 0 :(得分:0)

我认为你可以使用@Before和@After,但是它们在每个测试之前或之后运行。如果你能忍受它,请使用它们。如果你需要在所有测试方法之后执行它,我认为没有类似的东西。

你可以通过在@After方法中使用一些条件来模拟它吗?