Junit 测试 简明教程
摘要:
类中方法出现的情况无bug的方法出现bug的方法未写好的方法超时的方法单元测试创建步骤1. 创建一个测试对象2. 注意下面的注解@Before@Test(expected = ArithmeticException.class)@Test(timeout=1000)@Ignore("xxxxxxxxx")@After3. assertEquals(期待的结果, 实际的结果);可选的其他方案一、import static org.junit.Assert.assertEquals;import org.junit.Test;import org.junit.runner.Ru 阅读全文
posted @ 2013-06-13 22:01 Knuth_档案 阅读(225) 评论(0) 推荐(0) 编辑