java 如何在junit4中用PowerMockito模拟返回void的公共静态方法

jaxagkaj  于 2023-08-01  发布在  Java
关注(0)|答案(1)|浏览(231)

我在模拟一个返回void的公共静态方法时遇到了一个问题。
这是我到目前为止所拥有的:

  1. @RunWith(PowerMockRunner.class)
  2. @PrepareForTest(TheUtilsClass.class)
  3. public class MyTest {
  4. @Test
  5. public void theTest() {
  6. PowerMockito.mockStatic(TheUtilsClass.class);
  7. PowerMockito.doThrow(new RuntimeException.class).when(TheUtilsClass.class, "methodToBeMocked", any(FirstParam.class), any(SecondParam.class));
  8. }
  9. }

字符串
这不起作用,因为“methodToBeMocked”被重载了几次。相反,我得到了异常TooManyMethodsFoundException,并且无法抑制其他方法。

blmhpbnm

blmhpbnm1#

我自己找到了解决方案,但在网上找不到。实际上,我只是创建了一个Answer,它显示了所需的异常,就是这样:

  1. @RunWith(PowerMockRunner.class)
  2. @PrepareForTest(TheUtilsClass.class)
  3. public class MyTest {
  4. PowerMockito.mockStatic(BeanUtils.class, new Answer<Void>() {
  5. @Override
  6. public Void answer(InvocationOnMock invocation) throws Throwable {
  7. throw new RuntimeException();
  8. }
  9. }

字符串
}

相关问题