Powermock - mocking a super method invocation(Powermock - 模拟一个超级方法调用)
问题描述
这是我的代码 -
import org.junit.Test;
import org.junit.runner.RunWith;
import org.powermock.modules.junit4.PowerMockRunner;
import org.powermock.core.classloader.annotations.*;
import static org.powermock.api.support.SuppressCode.*;
class BaseService {
public int save() {
validate();
return 2;
}
public static int save2() {
return 5;
}
public void validate() {
System.out.println("base service save executing...");
}
}
class ChildService extends BaseService {
public int save() {
System.out.println("child service save executing...");
int x = super.save2();
int y = super.save();
System.out.println("super.save returned " + y);
load();
return 1 + x;
}
public void load() {
System.out.println("child service load executing...");
}
}
@RunWith(PowerMockRunner.class)
@PrepareForTest(BaseService.class)
public class PreventSuperInvocation {
@Test
public void testSave() throws Exception {
org.powermock.api.support.Stubber.stubMethod(BaseService.class,
"save2", 4);
suppressMethod(BaseService.class, "save");
ChildService childService = new ChildService();
System.out.println(childService.save());
}
}
我想在 ChildService
类中模拟 super.save()
.但我找不到这样做的方法.suppressMethod()
只抑制并返回一个默认值(在上述情况下为 0).而 MemberModifier
、Stubber
、MethodProxy
之类的东西只适用于静态方法.
I would like to mock super.save()
in ChildService
class. But I can't find a way of doing it. suppressMethod()
only suppresses and returns a default value (0 in the above case). And things like MemberModifier
, Stubber
, MethodProxy
only work for static methods.
有没有办法在 Powermock 中做到这一点?
Is there a way of doing this in Powermock?
我正在使用 Powermock 1.5 和 Mockito 1.9.5.
I'm using Powermock 1.5 and Mockito 1.9.5.
推荐答案
看来jMockit可以满足我的需求.也许我会将这个问题发布到 powermock 邮件列表.同时下面应该足够了.包 learning_mocking_tools.learning_mocking_tools;包 learning_mocking_tools.learning_mocking_tools;
It seems that jMockit can do what I need. Maybe I will I post this question to the powermock mailing list. Meanwhile below should suffice. package learning_mocking_tools.learning_mocking_tools; package learning_mocking_tools.learning_mocking_tools;
import mockit.*;
import org.junit.Assert;
import org.junit.Test;
class BaseService {
public int save() {
validate();
return 2;
}
public static int save2() {
return 5;
}
public void validate() {
System.out.println("base service save executing...");
}
}
class ChildService extends BaseService {
public int save() {
System.out.println("child service save executing...");
int x = super.save2();
int y = super.save();
System.out.println("super.save returned " + y);
load();
return 1 + y;
}
public void load() {
System.out.println("child service load executing...");
}
}
@MockClass(realClass = BaseService.class)
class MockBase {
@Mock
public int save() {
System.out.println("mocked base");
return 9;
}
}
public class PreventSuperInvocation {
@Test
public void testSave() throws Exception {
MockBase mockBase = new MockBase();
Mockit.setUpMock(BaseService.class, mockBase);
ChildService childService = new ChildService();
// int x = childService.save();
Assert.assertEquals(9 + 1, childService.save());
Mockit.tearDownMocks();
}
}
这篇关于Powermock - 模拟一个超级方法调用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Powermock - 模拟一个超级方法调用


基础教程推荐
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
- RabbitMQ:消息保持“未确认"; 2022-01-01
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- Struts2 URL 无法访问 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01