gpt4 book ai didi

java - PowerMock whenNew 没有@PrepareForTest?

转载 作者:搜寻专家 更新时间:2023-11-01 03:52:25 25 4
gpt4 key购买 nike

这是我的情况,我有 2 个非常简单的类:

public class B {

public void doSomething(){
System.out.println("doSomething B reached");
}
}

和:

public class A {

public void doSomething(){
B b = new B();
b.doSomething();
System.out.println("doSomething A reached");
}

我想用 Mockito 测试类 A 的 doSomething 方法。因此,我想模拟 B 类的一个实例,并在 A 实例化 B 类时将其提供给 A。出于隔离原因,我根本不希望达到 b.doSomething() 。

我知道我可以通过创建以下单元测试来实现此行为:

@RunWith(PowerMockRunner.class)
public class TestA {

@Test
@PrepareForTest(A.class)
public void testDoSomethingOfA() throws Exception{
A a = PowerMockito.spy(new A());
B b = PowerMockito.mock(B.class);
PowerMockito.whenNew(B.class).withNoArguments().thenReturn(b);
a.doSomething();
}
}

这导致输出:

doSomething A reached

所以这个工作!但是,我现在的问题是我们使用 Jococo 插件进行测试覆盖。 Jococo 不涵盖使用 @PrepareForTest(A.class) 语句测试的代码。我的公司重视准确的代码测试覆盖率。

我的问题:是否有另一种方法可以在不使用@PrepareForTest 语句的情况下为 A 实例化 B?

非常感谢!

最佳答案

回答我自己的问题,是的,使用代理:https://github.com/jayway/powermock/wiki/PowerMockAgent

关于java - PowerMock whenNew 没有@PrepareForTest?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22044284/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com