Exception
Eclipse 的 CodePro 生成 JUnit 测试,但是,即使不可能抛出已检查的异常,它生成的所有测试方法也会抛出。这是 CodePro 的限制,还是我以前从未见过的良好 JUnit 实践?
例如:
@Test
public void testCategory_1()
throws Exception {
String categoryName = "";
Category result = new Category(categoryName);
// add additional test code here
assertNotNull(result);
assertEquals(null, result.getCategoryName());
}
在哪里new Category(String)
并且result.getCategoryName()
不要抛出任何已检查的异常。