@Test public void testAdd() { MyMath math = new MyMath(); int result = math.add(2, 3); //断言 原理就是拿运行的结果和期望的结果进行比较 如果相同说明测试成功 assertEquals(5, result); }