步骤 2 : TestCase2 步骤 3 : TestSuite 步骤 4 : 可运行项目
在 入门教程 中,讲解的是对一个工具类 SumUtil 的测试类 TestCase1.
如果有很多工具类需要被测试,那么就会有 TestCase2, TestCase3, TestCase4, 如果不得不挨个去执行这些单独的测试类,也是比较麻烦的,所以就有了 TestSuite的概念
TestSuite 。。。 其实就是一下执行多个测试类。 首先来个TestCase2, 它。。。其实和 TestCase1 的内容是一样的,假装是个新的TestCase吧。。。
package junit;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import junit.framework.Assert;
public class TestCase2 {
@Before
public void before() {
System.out.println("测试前的准备工作,比如链接数据库等等");
}
@After
public void after() {
System.out.println("测试结束后的工作,比如关闭链接等等");
}
@Test
public void testSum1() {
int result = SumUtil.sum1(1, 2);
Assert.assertEquals(result, 3);
}
@Test
public void testSum2() {
int result = SumUtil.sum2(1, 2,3);
Assert.assertEquals(result, 5);
}
}
如代码所示的这么写。。。。就表示一下运行TestCase1 和 TestCase2 了。。。
运行之后可以看到,哪些成功了,哪些失败了 package junit;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
@RunWith(Suite.class)
@Suite.SuiteClasses({TestCase1.class,TestCase2.class})
public class TestSuite {
}
package junit; import org.junit.runner.RunWith; import org.junit.runners.Suite; @RunWith(Suite.class) @Suite.SuiteClasses({TestCase1.class,TestCase2.class}) public class TestSuite { }
在右上角有本知识点对应的可运行项目下载 ,实在自己搞不出来,就下载解压出来比较一下。
HOW2J公众号,关注后实时获知最新的教程和优惠活动,谢谢。
提问之前请登陆
提问已经提交成功,正在审核。 请于 我的提问 处查看提问记录,谢谢
|