作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个类可以除两个数字。当一个数字除以 0 时,会抛出 ArithmeticException。但是当我对此进行单元测试时,在控制台上显示抛出了 ArithmeticException,但我的测试失败并出现 AssertionError。我想知道是否有办法证明在Junit中抛出ArithmeticException?
示例.java
public class Example {
public static void main(String[] args)
{
Example ex = new Example();
ex.divide(10, 0);
}
public String divide(int a, int b){
int x = 0;
try{
x = a/b;
}
catch(ArithmeticException e){
System.out.println("Caught Arithmetic Exception!");
}
catch(Throwable t){
System.out.println("Caught a Different Exception!");
}
return "Result: "+x;
}
}
示例测试.java
public class ExampleTest {
@Test(expected=ArithmeticException.class)
public void divideTest()
{
Example ex = new Example();
ex.divide(10, 0);
}
}
我的实际代码是不同的,因为它有很多依赖项,我简化了对此示例测试的要求。请提出建议。
最佳答案
divide
不会引发此异常。
您的选择是
您可以像这样使用 IDE 提取方法
public static String divide(int a, int b){
int x = 0;
try{
x = divide0(a, b);
}
catch(ArithmeticException e){
System.out.println("Caught Arithmetic Exception!");
}
catch(Throwable t){
System.out.println("Caught a Different Exception!");
}
return "Result: "+x;
}
static int divide0(int a, int b) {
return a/b;
}
@Test(expected = ArithmeticException.class)
public void testDivideByZero() {
divide0(1, 0);
}
关于java - 捕获 Junit 中抛出的异常,而不会将 Throwable block 吞没,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35516984/
我有一个 Nancy 应用程序,我最近更新它以使用 OWIN/Katana。 出于某种原因,我的“真实”错误现在被隐藏了。 这是我收到的唯一一般性错误: A Task's exception(s) w
我有一个类可以除两个数字。当一个数字除以 0 时,会抛出 ArithmeticException。但是当我对此进行单元测试时,在控制台上显示抛出了 ArithmeticException,但我的测试失
我是一名优秀的程序员,十分优秀!