其他分享
首页 > 其他分享> > 每日日报

每日日报

作者:互联网

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