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

编程入门 行业动态 更新时间:2024-10-26 10:40:09
本文介绍了使用 PowerMockito 1.6 验证静态方法调用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我正在为类似于下面给出的示例的方法编写 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 验证静态方法调用

本文发布于:2023-10-31 07:13:35,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1545397.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:静态   方法   PowerMockito

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!