junit 单元测试
@Test
public void testAdd() {
MyMath math = new MyMath();
int result = math.add(2, 3);
//断言 原理就是拿运行的结果和期望的结果进行比较 如果相同说明测试成功
assertEquals(5, result);
}
标签:MyMath,日报,每日,单元测试,int,result,Test,math
来源: https://www.cnblogs.com/zhukaile/p/14833109.html