您的位置:软件测试 > 开源软件测试 > 开源单元测试工具 > junit
JUnit4单元测试简单入门
作者:网络转载 发布时间:[ 2016/7/14 11:48:30 ] 推荐标签:单元测试 软件测试工具

  在类名上面点击右键生成test测试类


  测试类生成截图


测试类名,勾选测试方法

  会在测试类的包中自动生成测试类
package com.example.news;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Created by 小新 on 2016/7/1.
*/
public class CalculatorTest {
@Before
public void setUp() throws Exception {
}
@Test
public void testSum() throws Exception {
}
@Test
public void testSubstract() throws Exception {
}
@Test
public void testDivide() throws Exception {
}
@Test
public void testMultiply() throws Exception {
}
@Test
public void testAddMore() throws Exception {
}
}
  然后进行测试
package com.example.news;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Created by 小新 on 2016/7/1.
*/
public class CalculatorTest1 {
private Calculator calculator;
@Before
public void setUp() throws Exception {
calculator = new Calculator();
}
@Test
public void testSum() throws Exception {
//测试sum函数,因为sum函数返回的是两个数的合为3
//这里期望返回的值是9
//所以会报错
assertEquals(9d,calculator.sum(1d,2d),0);
}
@Test
public void testSubstract() throws Exception {
}
@Test
public void testDivide() throws Exception {
}
@Test
public void testMultiply() throws Exception {
}
@Test
public void testAddMore() throws Exception {
}
}
  运行这个类,结果为报错,这个时候我们需要修改函数了
  到这里我们JUnix的简单测试结束了

上一页12下一页
软件测试工具 | 联系我们 | 投诉建议 | 诚聘英才 | 申请使用列表 | 网站地图
沪ICP备07036474 2003-2017 版权所有 上海泽众软件科技有限公司 Shanghai ZeZhong Software Co.,Ltd