Junit:运行参数化测试时未调用Runlistener覆盖方法(testFinished)

时间:2013-12-16 06:51:55

标签: java junit4 parameterized

我需要运行一个参数化测试,它正常工作正常,但是我们关注的是,在我们的框架中,我们有自己的自定义侦听器类,它扩展了RunListener并覆盖了所有方法。但是当我将测试作为参数化测试运行时,没有一个方法被覆盖。但如果我在没有参数的情况下进行测试,同样的工作正常。

下面的

是我的CustomJunitListener

{
/**
 * Class used to do some report regarding the JUnit event notifier
 */
public class CustomJUnitListener extends RunListener {

  SeleniumTest test = null;

  public void setSeleniumTest(SeleniumTest test) {
    this.test = test;
  }

  /** {@inheritDoc} */
  @Override
  public void testFinished(Description description) throws Exception {
    if (test != null) {
      test.postExecution();
    }
  }



}

当我运行paramterized测试时,不会调用postExection方法。我希望在完成测试的每组参数后调用postExection方法。

以下是我的硒测试

@RunWith(Parameterized.class)
public class Test_Script extends SeleniumTest{

  private String testName;
  private String from;
  private String to;

  public Test_Script(String testName , String from, String to) {
    this.testName =testName;
    this.from =from;
    this.to =to;
  }

  @Test
  public void scenario()throws Exception{
     /* Test Script */
  }

  @Parameters
  public static Collection<Object[]> getData() throws ParserConfigurationException, SAXException, IOException {
    XMLReader reader = new XMLReader("NewFile.xml");
    return reader.readXML();
  }

请提供您对此的意见。

1 个答案:

答案 0 :(得分:1)

这不是使用RunListener的方法。 RunListener独立于测试 - 您将它添加到运行测试的类(在您的情况下为Parameterized类),而不是您的测试本身。有关如何使用RunListener的示例,请参阅How to add listener in Junit testcases

然而,我怀疑这实际上并不是你想要的。您可能希望查看TestRules,特别是ExternalResource类。这允许您定义一个可以更容易重用的before()和after()方法:

@Rule ExternalResource myRule = new ExternalResource() {
    public void after() {
        test.postExecution();
    }
}

有关详细信息,请参阅JUnit wiki - Rules