JUnit套件测试实例

“套件测试”是指捆绑了几个单元测试用例并运行起来。在JUnit中,@RunWith 和 @Suite 这两个注解是用来运行套件测试。

下面的例子演示这两个单元测试:JunitTest1 和 JunitTest2,在执行JunitTest5 后会一起运行。

import org.junit.runner.RunWith;
import org.junit.runners.Suite; /**
* JUnit Suite Test
* @author yiibai
*
*/ @RunWith(Suite.class)
@Suite.SuiteClasses({
JunitTest1.class,
JunitTest2.class
})
public class JunitTest5 {
}

输出结果如下:

@BeforeClass - oneTimeSetUp
@Before - setUp
@Test - testEmptyCollection
@After - tearDown
@Before - setUp
@Test - testOneItemCollection
@After - tearDown
@AfterClass - oneTimeTearDown

P.S 结果是从JunitTest1和JunitTest2单元测试的结果汇总起来。

上一篇:Junit 4.x 单元测试,参数化测试,套件测试 实例


下一篇:学习使用TestNG进行数据驱动测试