JUnit4测试监听器-JUnit RunListener示例

后端 潘老师 7个月前 (10-24) 140 ℃ (0) 扫码查看

通常,监听器有助于监听我们所感兴趣的事件。这可能是出于多种原因。例如,我们添加监听器以添加特定的日志,处理Java GUI编程中的UI事件等等。

JUnit还提供支持,通过RunListener类在执行测试时添加监听器。这种监听器可以用于各种目的,从改进日志记录到测试特定的逻辑。

1.JUnit RunListener示例

1.1 JUnit测试类

下面我们仅写两个测试类为例。我们将监视在这些类中编写的测试所打印的日志。

public class TestFeatureOne {
  @Test
  public void testFirstFeature()
  {
    Assert.assertTrue(true);
  }
}
public class TestFeatureTwo {
  @Test
  public void testSecondFeature()
  {
    Assert.assertTrue(true);
  }
 
  @Test
  @Ignore
  public void testSecondFeatureIngored()
  {
    Assert.assertTrue(true);
  }
}

1.2 JUnit测试监听器

让我们编写运行监听器。这个监听器将扩展JUnit提供的RunListener类。

public class ExecutionListener extends RunListener
{
  /**
   * 在运行任何测试之前调用的函数。
   * */
  public void testRunStarted(Description description) throws java.lang.Exception
  {
    System.out.println("Number of tests to execute : " + description.testCount());
  }
 
  /**
   *  在所有测试完成后调用的函数。
   * */
  public void testRunFinished(Result result) throws java.lang.Exception
  {
    System.out.println("Number of tests executed : " + result.getRunCount());
  }
 
  /**
   * 当原子测试即将开始时调用的函数。
   * */
  public void testStarted(Description description) throws java.lang.Exception
  {
    System.out.println("Starting execution of test case : "+ description.getMethodName());
  }
 
  /**
   * 当原子测试完成时调用的函数,无论测试成功还是失败。
   * */
  public void testFinished(Description description) throws java.lang.Exception
  {
    System.out.println("Finished execution of test case : "+ description.getMethodName());
  }
 
  /**
   *  原子试验失败时调用。
   * */
  public void testFailure(Failure failure) throws java.lang.Exception
  {
    System.out.println("Execution of test case failed : "+ failure.getMessage());
  }
 
  /**
   * 当一个测试不会被运行时调用,通常是因为测试方法被标记为 Ignore。
   * */
  public void testIgnored(Description description) throws java.lang.Exception
  {
    System.out.println("Execution of test case ignored : "+ description.getMethodName());
  }
}

我们可以自由地覆盖RunListener类中的任何数量的方法,包括根本不覆盖任何方法。

2. JUnit监听器执行

现在,让我们运行测试并观察监听器的输出。

public class ExecuteWithRunListener
{
  public static void main(String[] args)
  {
    JUnitCore runner = new JUnitCore();
    <strong>//Adding listener here</strong>
    runner.addListener(new ExecutionListener());
    runner.run(TestFeatureOne.class, TestFeatureTwo.class);
  }
}

程序输出:

Number of tests to execute : 3
 
Starting execution of test case : testFirstFeature
Finished execution of test case : testFirstFeature
 
Starting execution of test case : testSecondFeature
Finished execution of test case : testSecondFeature
 
Execution of test case ignored : testSecondFeatureIngored
 
Number of tests executed : 2

很明显,添加监听器为测试执行提供了额外的控制,同时改进了日志记录支持。


版权声明:本站文章,如无说明,均为本站原创,转载请注明文章来源。如有侵权,请联系博主删除。
本文链接:https://www.panziye.com/back/10337.html
喜欢 (0)
请潘老师喝杯Coffee吧!】
分享 (0)
用户头像
发表我的评论
取消评论
表情 贴图 签到 代码

Hi,您需要填写昵称和邮箱!

  • 昵称【必填】
  • 邮箱【必填】
  • 网址【可选】