博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PowerMock mock私有方法
阅读量:5959 次
发布时间:2019-06-19

本文共 1505 字,大约阅读时间需要 5 分钟。

 

import java.util.Random;public class CodeWithPrivateMethod {        public void meaningfulPublicApi() {        if (doTheGamble("Whatever", 1 << 3)) {            throw new RuntimeException("boom");        }    }    private boolean doTheGamble(String whatever, int binary) {        Random random = new Random(System.nanoTime());        boolean gamble = random.nextBoolean();        return gamble;    }}

PowerMock:

import org.junit.Test;import org.junit.runner.RunWith;import org.powermock.api.mockito.PowerMockito;import org.powermock.core.classloader.annotations.PrepareForTest;import org.powermock.modules.junit4.PowerMockRunner;import static org.mockito.Matchers.anyInt;import static org.mockito.Matchers.anyString;import static org.powermock.api.mockito.PowerMockito.when;import static org.powermock.api.support.membermodification.MemberMatcher.method;@RunWith(PowerMockRunner.class)@PrepareForTest(CodeWithPrivateMethod.class)public class CodeWithPrivateMethodTest {    @Test(expected = RuntimeException.class)    public void when_gambling_is_true_then_always_explode() throws Exception {        CodeWithPrivateMethod spy = PowerMockito.spy(new CodeWithPrivateMethod());        when(                spy,                method(CodeWithPrivateMethod.class, "doTheGamble",                        String.class, int.class)).withArguments(anyString(),anyInt()            ).thenReturn(true);        spy.meaningfulPublicApi();    }}

 

 

http://codego.net/368377/

 

转载于:https://www.cnblogs.com/softidea/p/4204376.html

你可能感兴趣的文章
24周年,“常青树”Delphi发布新版本10.3.1
查看>>
7. 从数据库获取数据- 从零开始学Laravel
查看>>
阿里百川码力APP监控 来了!
查看>>
使用dotenv管理环境变量
查看>>
温故js系列(11)-BOM
查看>>
Vuex学习
查看>>
bootstrap - navbar
查看>>
切图崽的自我修养-[ES6] 编程风格规范
查看>>
服务器迁移小记
查看>>
FastDFS存储服务器部署
查看>>
Android — 创建和修改 Fragment 的方法及相关注意事项
查看>>
swift基础之_swift调用OC/OC调用swift
查看>>
Devexpress 15.1.8 Breaking Changes
查看>>
推荐JS插件:imagesLoaded,监测图片加载情况并提供相应的事件(加载成功/失败)...
查看>>
Java B2B2C多用户商城 springcloud架构- common-service 项目构建过程(七)
查看>>
杨老师课堂之ArrayList集合常用方法解析
查看>>
ElasticSearch Client详解
查看>>
新零售讲堂之时代下的传统零售业,何去何从?
查看>>
c++读取和写入TXT文件的整理
查看>>
深入动态人脸识别小场景应用,2019年或将迎来爆发期
查看>>