gpt4 book ai didi

java - 当父级在不同的包中时模拟 protected 父级方法

转载 作者:行者123 更新时间:2023-11-29 10:10:59 28 4
gpt4 key购买 nike

我需要在被测类的父类中模拟 protected 方法,但父类位于不同的包中,因此我的测试类无法访问该方法,因此我无法模拟它。必须有一个无需重构的解决方案

我需要使用 Powermock 和 Mockito。这是 JAR

  • mockito-all 1.10.8
  • powermock-core 1.6.1
  • powermock-module-junit4 1.6.1
  • powermock-api-mockito 1.6.1
  • 6 月 4.12

这是遗留代码,所以我无法重构,但这是简化的代码。

Parent.java

package parent;

public class Parent {

// Want to mock this protected parent method from different package
protected String foo() {

String someValue = null;

// Logic setting someValue

return someValue;
}
}

Child.java

package child;

import parent.Parent;

public class Child extends Parent {

String fooString = null;

public String boo() {

this.fooString = this.foo();

String booString = null;

// Logic setting booString

return booString;
}
}

ChildTest.java

package child;

import static org.mockito.Mockito.spy;

import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.powermock.core.classloader.annotations.PrepareForTest;
import org.powermock.modules.junit4.PowerMockRunner;

import parent.Parent;

@RunWith(PowerMockRunner.class)
@PrepareForTest({ Parent.class, Child.class })
public class ChildTest {

// Class Under Test
Child cut;

@Before
public void setUp() throws Exception {

// Partial mock to mock methods in parent class
cut = spy(new Child());

}

@Test
public void testBoo() {

// TODO: Need to mock cut.foo() but can't figure out how.

// Following gives me this error: The method foo() from the type Parent is not visible
Mockito.when(((Parent)cut).foo()).thenReturn("mockValue");

// Test
cut.boo();

// Validations
Assert.assertEquals(cut.fooString, "mockValue");

}
}

最佳答案

只需创建一个新类来测试扩展您要测试的类,并在那里覆盖您的方法。

那看起来像这样:

public class ChildForTest extends Child{
@Override
protected String foo() {
//mock logic here
}
}

编辑:如果你想避免新的类定义,你可以使用匿名类

@Before
public void setUp() throws Exception {

// Partial mock to mock methods in parent class
cut = new Child(){
@Override
protected String foo(){
//mock logic here
return "";
}
};
}

关于java - 当父级在不同的包中时模拟 protected 父级方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34684328/

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