gpt4 book ai didi

JUnit4如何断言确定异常的抛出

转载 作者:行者123 更新时间:2023-11-30 07:20:27 25 4
gpt4 key购买 nike

问题

在JUnit4单元测试中,我要怎样做才能测试出有特定的异常抛出?我能想到的就只有下面的方法:

@Test
public void testFooThrowsIndexOutOfBoundsException() {
boolean thrown = false;

try {
foo.doStuff();
} catch (IndexOutOfBoundsException e) {
thrown = true;
}

assertTrue(thrown);
}

回答1

在JUnit4后支持下面的写法:

@Test(expected=IndexOutOfBoundsException.class)
public void testIndexOutOfBoundsException() {
ArrayList emptyList = new ArrayList();
Object o = emptyList.get(0);
}

(译者:在@Test注解内提供了expected属性,你可以用它来指定一个Throwble类型,如果方法调用中抛出了这个异常,那么这条测试用例就相当于通过了)

回答2

如果你使用的是JUnit4.7,你可以使用如下的期望异常规则来验证异常信息:

public class FooTest {
@Rule
public final ExpectedException exception = ExpectedException.none();

@Test
public void doStuffThrowsIndexOutOfBoundsException() {
Foo foo = new Foo();

exception.expect(IndexOutOfBoundsException.class);
foo.doStuff();
}
}

这种方式比@Test(expected=IndexOutOfBoundsException.class)要更好,如果是在调用foo.doStuff()方法之前就已经抛出异常的话,测试结果就不是我们想要的了。(译者:同时,ExpectedException还能够验证异常信息,如exception.expectMessage("there is an exception!");

拓展阅读

  1. JUnit:使用ExpectedException进行异常测试
  2. JUnit4 用法详解

StackOverflow地址:

http://stackoverflow.com/questions/156503/how-do-you-assert-that-a-certain-exception-is-thrown-in-junit-4-tests

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com