使用 PowerMockito 1.6 验证静态方法调用

Verify Static Method Call using PowerMockito 1.6(使用 PowerMockito 1.6 验证静态方法调用)
本文介绍了使用 PowerMockito 1.6 验证静态方法调用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

限时送ChatGPT账号..

我正在为类似于下面给出的示例的方法编写 JUnit 测试用例:

I am writing JUnit test case for methods similar to sample given below:

Class SampleA{
    public static void methodA(){
        boolean isSuccessful = methodB();
        if(isSuccessful){
            SampleB.methodC();
        }
    }

    public static boolean methodB(){
        //some logic
        return true;
    }
}

Class SampleB{
    public static void methodC(){
        return;
    }
}

我在我的测试类中编写了以下测试用例:

I wrote the following test case in my test class:

@Test
public void testMethodA_1(){
    PowerMockito.mockStatic(SampleA.class,SampleB.class);

    PowerMockito.when(SampleA.methodB()).thenReturn(true);
    PowerMockito.doNothing().when(SampleB.class,"methodC");

    PowerMockito.doCallRealMethod().when(SampleA.class,"methodA");
    SampleA.methodA();
}

现在我想验证是否调用了 Sample B 类的静态方法 C().如何使用 PowerMockito 1.6 实现?我已经尝试了很多东西,但它似乎对我来说并不奏效.任何帮助表示赞赏.

Now I want to verify whether static methodC() of class Sample B is called or not. How can I achieve using PowerMockito 1.6? I have tried many things but it doesn't seems to be working out for me. Any help is appreciated.

推荐答案

就个人而言,我不得不说 PowerMock 等是解决问题的解决方案,如果你的代码还不错的话,你不应该有.在某些情况下,它是必需的,因为框架等使用静态方法会导致代码根本无法测试,但如果是关于您的代码,您应该始终更喜欢重构而不是静态模拟.

Personally, I have to say that PowerMock, etc. is the solution to a problem that you shouldn't have if your code wasn't bad. In some cases, it is required because frameworks, etc. use static methods that lead to code that simply cannot be tested otherwise, but if it's about YOUR code, you should always prefer refactoring instead of static mocking.

无论如何,在 PowerMockito 中进行验证应该不会那么难......

Anyway, verifing that in PowerMockito shouldn't be that hard...

PowerMockito.verifyStatic( Mockito.times(1)); // Verify that the following mock method was called exactly 1 time
SampleB.methodC();

(当然,要使其工作,您必须将 SampleB 添加到 @PrepareForTest 注释并为其调用 mockStatic.)

(Of course, for this to work you must add SampleB to the @PrepareForTest annotation and call mockStatic for it.)

这篇关于使用 PowerMockito 1.6 验证静态方法调用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Sending a keyboard event from java to any application (on-screen-keyboard)(将键盘事件从 java 发送到任何应用程序(屏幕键盘))
How to make JComboBox selected item not changed when scrolling through its popuplist using keyboard(使用键盘滚动其弹出列表时如何使 JComboBox 所选项目不更改)
Capturing keystrokes without focus(在没有焦点的情况下捕获击键)
How can I position a layout right above the android on-screen keyboard?(如何将布局放置在 android 屏幕键盘的正上方?)
How to check for key being held down on startup in Java(如何检查在Java中启动时按住的键)
Android - Get keyboard key press(Android - 获取键盘按键)