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

IDEA 中的 Junit 单元测试

时间:2020-07-13 21:16:56      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:乘法   测试   ctr   code   java   加法   before   开启   算数   

以算数中加法乘法说明Junit怎样使用:

package com.gxc.cal;

public class Calu {

    public int add(int n1,int n2){
        return n1+n2;

    }

    public int plus(int n1,int n2){
        return n1*n2;

    }
}

Idea中按“ctrl + shift + t”开启单元测试:
在单元测试中加入Assert断言方法

package com.gxc.cal;

import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;

import static org.junit.Assert.*;

public class CaluTest {
    Calu c = new Calu();


    @Test
    public void add() {

        int res = c.add(2, 3);
        Assert.assertEquals("OK", 5, res);

    }

    @Test
    public void plus() {
        Assert.assertEquals("OK", 6, c.plus(2, 3));

    }
}

IDEA 中的 Junit 单元测试

标签:乘法   测试   ctr   code   java   加法   before   开启   算数   

原文地址:https://www.cnblogs.com/raising/p/13295613.html

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