Java单元测试框架-JUnit4

JUnit是什么?
JUnit是一个可编写可重复测试案例的简单框架,它是xUnit的一个实例,xUnit是一套基于测试驱动开发的测试框架。


为什么要用Junit?
Junit使用断言机制,可以直接将程序预期结果和最终结果进行比对,从而判断程序编写的对错。
注意:Junit测试代码应该与源码存放在两个不同的包文件中,因为最终项目打包是要剔除测试代码的。


自动生成:
一个类中多个或者所有方法的测试类:选中要测试的类文件,右键new一个java test case,选择源代码文件,next,即可跳出选择类中方法的窗口,选择所需测试的方法,Eclipse会自动帮我们生成多个测试方法的测试类。


细节注意点:
1. 测试方法必须使用@Test进行修饰
2. 测试方法必须使用public void进行修饰,不能带任何的参数
3. 新建一个源代码目录来存放我们的测试代码
4. 测试类的包应该和被测试类保持一致
5. 测试单元中的每个方法必须可以独立测试,测试方法间不能有任何的依赖
6. 测试类使用Test作为类名的后缀(不是必须)
7. 测试方法使用test作为方法名的前缀(不是必须)


Failure一般由单元测试使用的断言方法判断失败引起的,这表示测试点发现了问题,就是说程序输出的结果和我们预期的不一样。
Error是由代码异常引起的,它可以产生于测试代码本身的错误,也可是被测试代码中的一个隐藏的bug。
测试用例不是用来证明你是对的,而是证明没有错。


Junit运行流程:
1. @BeforeClass修饰的方法会在所有方法被调用前被执行,而且该方法是静态的,所以当测试类被加载后接着就会运行它,而且在内存中它只会存在一份实例,它比较适合加载配置文件。
2. @AfterClass所修饰的方法通常用来对资源的清理,如关闭数据库的连接。
3. @Before和@After会在每个测试方法的前后各执行一次。

public class JunitFlowTest {

    @BeforeClass
    public static void setUpBeforeClass() throws Exception {
        System.out.println("this is beforeClass");
    }

    @AfterClass
    public static void tearDownAfterClass() throws Exception {
        System.out.println("this is afterClass");
    }

    @Before
    public void setUp() throws Exception {
        System.out.println("this is before");
    }

    @After
    public void tearDown() throws Exception {
        System.out.println("this is after");
    }

    @Test
    public void test1(){
        System.out.println("this is test1");
    }

    @Test
    public void test2(){
        System.out.println("this is test2");
    }
}

运行结果:

this is beforeClass
this is before
this is test1
this is after
this is before
this is test2
this is after
this is afterClass

Junit中的常用注解:
@Test:将一个普通的方法修饰为一个测试方法
@Test(expected=XX.class)
@Test(timeout=毫秒)
@BeforeClass:它会在所有的方法运行前被执行,static修饰
@AfterClass:它会在所有的方法运行前被执行,static修饰
@Before:会在每个测试方法被运行前执行一次
@After:会在每个测试方法被运行后执行一次
@Ignore:所修饰的方法会被测试运行器忽略
@RunWith:可以更改测试运行器,一般只要继承org.junit.runner.Runner


Junit4中的测试套件:
在实际的项目开发中,项目规模会越来越大,需要测试的类也会逐渐增加,那么Junit为我们提供了一个批量运行测试类的方法,即测试套件。
1.测试套件就是组织测试类一起运行的

  写一个作为测试套件的入口类,这个类里不包含其他的方法
  更改测试运行器Suite.class
  将要测试的类作为数组传入到Suite.SuiteClass({})
@RunWith(Suite.class)
@Suite.SuiteClasses({TaskTest1.class,TaskTest2.class,TaskTest3.class})
public class SuiteTest {

    /**
     * 1.测试套件就是组织测试类一起运行的
     * 
     * 写一个作为测试套件的入口类,这个类里不包含其他的方法
     * 更改测试运行器Suite.class
     * 将要测试的类作为数组传入到Suite.SuiteClass({})
     */
}

Junit4的参数化设置:
1. 更改默认的测试运行器为RunWith(Parameterized.class)
2. 声明变量来存放预期值和结果值
3. 声明一个返回值为Collection的公共静态方法,并使用@Parameters进行修饰
4. 为测试类声明一个带有参数的公共构造函数,并在其中为之声明变量赋值

@RunWith(Parameterized.class)
public class ParameterTest {

    /**
     * 1. 更改默认的测试运行器为RunWith(Parameterized.class)
     * 2. 声明变量来存放预期值和结果值
     * 3. 声明一个返回值为Collection的公共静态方法,并使用@Parameters进行修饰
     * 4. 为测试类声明一个带有参数的公共构造函数,并在其中为之声明变量赋值
     */
    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){
        this.expected = expected;
        this.input1 = input1;
        this.input2 = input2;
    }

    @Test
    public void testAdd(){
        assertEquals(expected,new Calculate().add(input1, input2));
    }
}

 Not signed i

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值