概述
环境搭建:导jar包
二、使用步骤
1、把junit4.x的测试jar,添加到该项目中来;
2、定义一个测试类(约定俗称的规则,非强制要求)
测试类的名字: XxxTest,例如要测试MyMath类型,一般定义测试类的类名为MyMathTest
3、在MyMathTest中编写测试方法
public class Computer {
public int add(int x,int y) {
return x+y;
}
public int jian(int x,int y) {
return x-y;
}
public int cheng(int x,int y) {
return x*y;
}
public int chu(int x,int y) {
return x/y;
}
}
import org.junit.Test;
import junit.framework.Assert;
public class Demo02 {
@Test
public void jiaTest() {
Computer d = new Computer();
int result = d.add(2, 4);
Assert.assertEquals(6, result);
}
@Test
public void jianTest() {
Computer d = new Computer();
int result = d.jian(2, 4);
Assert.assertEquals(-2, result);
}
@Test
public void chengTest() {
Computer d = new Computer();
int result = d.cheng(2, 4);
Assert.assertEquals(8, result);
}
@Test
public void chuTest() {
Computer d = new Computer();
int result = d.chu(4, 2);
Assert.assertEquals(2, result);
}
}
注意
方法是public修饰的,无返回的,该方法上必须贴有@Test标签。
4、选择某一个测试方法,鼠标右键选择 [run as junit],或则选中测试类,表示测试该类中所有的测试方法.
最后
以上就是淡然萝莉为你收集整理的白盒测试——单元测试的全部内容,希望文章能够帮你解决白盒测试——单元测试所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复