码迷,mamicode.com
首页 > 其他好文 > 详细

JUnit4.8.2源代码分析-5 Statement

时间:2014-10-10 01:30:33      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:junit4.8.2   源代码   

org.junit.runners.model.Statement/语句是对运行JUnit测试组过程中的一个或多个动作的封装。如果说Runner.run()表示运行JUnit测试组的整个过程,则Statement表示其中或大或小的步骤。针对方法的标注如@Test 、@Before、@After、@BeforeClass、@AfterClass具有某些执行的顺序,Statement是整个过程的一个步骤结点,而诸多Statement构成的链式结构表达了整个过程。在各种Runner中广泛使用它们。

o       org.junit.runners.model.Statement

o       org.junit.internal.runners.statements.ExpectException

o       org.junit.internal.runners.statements.Fail

o       org.junit.internal.runners.statements.FailOnTimeout

o       org.junit.internal.runners.statements.InvokeMethod

o       org.junit.internal.runners.statements.RunAfters

o       org.junit.internal.runners.statements.RunBefores

o       org.junit.experimental.theories.Theories.TheoryAnchor

抽象类Statement只要一个方法public abstract void evaluate() throwsThrowable;

1. Fail

Fail表示JUnit测试过程中遇到了问题而失败,因而其evaluate()简单地抛出一个通常是JUnit自定义的异常。

2. RunBefores

一个测试单元类中可能有@BeforeClass或@Before标注的一些方法。虽然两者有不同的含义,但是JUnit用一个RunBefores来抽象。@BeforeClass修饰的方法,可以有多个,必须是静态的,在所有测试方法运行之前运行,对每个测试类只运行一次;@Before在每个测试方法运行之前都要运行,只能够有一个。所以,RunBefores 使用成员变量List<FrameworkMethod> fBefores保存多个FrameworkMethod,Object fTarget是测试单元类的引用(而非TestUnit.class),其evaluate()调用所有fBefores的方法,并将流程推进给下一个Statement对象。

3. InvokeMethod

@Test方法的抽象为InvokeMethod,它的evaluate()执行一个FrameworkMethod。

4. ExpectException

测试时可以检查抛出预期异常( expected exceptions)的代码,由@Test(expected…)修饰。这种测试是整个测试流程的一部分。它需要一个InvokeMethod作为基础(ExpectException的成员变量取名next不好,base),还有指定的expected exceptions。其evaluate()中,使用try/catch监控InvokeMethod执行;如果它抛出的异常不是指定的异常,或者没有抛出异常,前者抛出Exception,后者抛出一个断言失败的AssertionError。

5. FailOnTimeout

在@Test注解中指定了timeout值时,如果执行时间超出了timeout的值则JUnit4抛出一个Exception。

6. RunAfters

对应RunBefores。保留这个源代码,其他删除。

7. Theories.TheoryAnchor

暂时跳过。

链的构造和管理有Runner负责。


还有约100个类要看。晕了晕了

JUnit4.8.2源代码分析-5 Statement

标签:junit4.8.2   源代码   

原文地址:http://blog.csdn.net/yqj2065/article/details/39942737

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!