Junit4
junit4快速入门
1.新建一个Calculate 类
public class Calculate {
public int add(int a,int b){
return a+b;
}
public int sub(int a ,int b){
return a-b;
}
public int mul(int a,int b) {
return a*b;
}
public int div(int a,int b) {
return a/b;
}
}
2.在project目录下,建立一个test目录,右键Calculate 类,new Junit test case,之后修改路径为test,点击next,选中Calculate 中的所有方法。修改测试方法的代码,例如(assertEquals(6, new Calculate().add(3,3));)第一个参数为预期类,第二个为被测试的方法。
右键run as junittest,绿色为通过,红色为错误。
import static org.junit.Assert.*;
import org.junit.Test;
import com.nuc.junit.Calculate;
public class Calculatetest {
@Test
public void testadd() {
assertEquals(6, new Calculate().add(3,3));
}
@Test
public void testsub() {
assertEquals(2, new Calculate().sub(3,1));
}
@Test
public void testmul() {
assertEquals(9, new Calculate().mul(3,3));
}
@Test
public void testdiv() {
assertEquals(1, new Calculate().div(3,3));
}
}
/**
1.测试方法上必须使用@Test进行修饰
2.测试方法必须使用public void 进行修饰,不能待任何的参数
3.新建一个源代码目录
4.测试类的爆应该和被测试类保持一致
5.测试单元中的每个方法必须可以独立测试,测试方法间不能有任何的依赖
6.测试类使用Test作为类名的后缀
-
7.测试方法使用test作为方法名的前缀
*/
Junit4运行流程
1.建立一个junit test case
选中图中红线的四个方法。
将其修改为如下。
package com.nuc.junit;
import static org.junit.Assert.*;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
public class JunitFllowtest {
@BeforeClass
public static void setUpBeforeClass() throws Exception {
System.out.println("test is before class");
}
@AfterClass
public static void tearDownAfterClass() throws Exception {
System.out.println("test is after class");
}
@Before
public void setUp() throws Exception {
System.out.println("test is before ");
}
@After
public void tearDown() throws Exception {
System.out.println("test is after");
}
@Test
public void test(){
System.out.println("thsi is test");
}
@Test
public void test2(){
System.out.println("thsi is test2");
}
}
输出为
test is before class
test is before
thsi is test
test is after
test is before
thsi is test2
test is after
test is after class
- @BeforeClass修饰的方法会在所有方法被调用前执行,而且该方法是静态的,所以当测试类被加载后接着就会运行它,而且在内存中它只会存在一份实例,它比较适合加载配置文件
- @AfterClass所修饰的方法通常用来对资源的清理,如关闭数据库的连接
- @Before和@After会在每个测试方法的前后各执行一次
junit4常用注解:
- @Test:将一个普通的方法修饰成为一个测试方法
- @Test(expected=XX.class)
- @Test(timeout=毫秒)
- @BeforeClass:它会在所有的方法运行前被执行,static修饰
- @AfterClass:它会在所有的方法运行结束后被执行,static修饰
- @Before:会在被一个测试方法被运行前执行一次
- @After:会在每一个测试方法运行后被执行一次
- @Ignore:所修饰的测试方法会被测试运行器忽略
- @RunWith:可以更改测试运行器 org.junit.runner.Runner
新建一个AnotationTest 类如下run as 。
import static org.junit.Assert.*;
import org.junit.Test;
public class AnotationTest {
@Test
public void testdiv(){
assertEquals(0,new Calculate().div(4, 0));
}
}
Error 有算数异常,ArithmeticException。
做如下修改:@Test(expected=ArithmeticException.class),预期会抛出ArithmeticException异常,再次Run as 没有出现ERROR。
import static org.junit.Assert.*;
import org.junit.Test;
public class AnotationTest {
@Test(expected=ArithmeticException.class)
public void testdiv(){
assertEquals(0,new Calculate().div(4, 0));
}
//执行2秒之后停止运行
@Test(timeout=2000)
public void test(){
while(true){
System.out.println("循环");
}
}
}
junit4测试套件的使用(将所有的测试类)
新建一个测试类,SuiteTest,在类名上加注解@RunWith(Suite.class),作为测试套件入口。
@SuiteClasses({AnotationTest.class,Calculatetest.class,JunitFllowtest.class})将要使用的测试类加进来,也可以加套件类。
package com.nuc.junit;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(Suite.class)
@SuiteClasses({AnotationTest.class,Calculatetest.class,JunitFllowtest.class})
public class SuiteTest {
}
测试套件就是组织测试类一起运行的
- 写一个作为测试套件的入口类,这个类里不包含其他的方法!!!
- 更改测试运行器Suite.class.
- 将要测试的类作为数组传入到Suite.SuiteClasses({})
junit4参数化设置:
- 更改默认的测试运行器为RunWith(Parameterized.class)
- 声明变量来存放预期值和结果值
- 声明一个返回值为Collection的公共静态方法,并使用@Parameters进行修饰
- 为测试类声明一个带有参数的公共构造函数,并在其中位置声明变量赋值.
import static org.junit.Assert.*;
import java.util.Arrays;
import java.util.Collection;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;
@RunWith(Parameterized.class)
public class ParameterTest {
int expected = 0;
int input1 = 0;
int input2 = 0;
@Parameters
public static Collection<Object[]> t() {
return Arrays.asList(new Object[][]{
{3,1,2},
{4,2,2},
});
}
public ParameterTest(int expected, int input1, int input2) {
super();
this.expected = expected;
this.input1 = input1;
this.input2 = input2;
}
@Test
public void testadd(){
assertEquals(expected,new Calculate().add(input1, input2));
}
}