我已经在junit4中编写了这段代码。
@Test (expected = AssertionError.class)
public void testMinFail() {
double min = emApp.minSalary(emApp.getEmployees());
assertEquals(40000.0, min, 0);
}
enter code here
我只是想知道如何在junit3中捕获它。
答案 0 :(得分:0)
如果您真的想使用较旧的JUnit版本,可以执行以下操作:
@Test
public void testMinFail() {
try{
double min = emApp.minSalary(emApp.getEmployees());
}catch (AssertionError ae){
//Do something here
}
assertEquals(40000.0, min, 0);
}