我正在编写一个扩展atgdustcase的TestNG测试用例。我需要在类B中模拟一个方法。使用ATG中的属性文件将类B注入到类A中。 C类是测试A类功能的测试类.D是扩展AtgDustCase的测试类。
@RunWith(PowerMockRunner.class)
@PrepareForTest({A.class, B.class})
Public class c extends D{
@InjectGlobalComponent(Path for component A)
@InjectMocks
private A aClass;
public void testMethod(){
String string = "abc";
Map map = new HashMap();
map.put("a", "c");
aClass = getRequest.resolveName(Component A path);
B b = PowerMockito.mock(B.class);
A a = PowerMockito.spy(new A());
PowerMockito.whenNew(A.class).withNoArguments().thenReturn(a);
a.setB(B);
PowerMockito.when(a.getB()).thenReturn(b);
Mockito.stub(b.getMethodToMock(string)).toReturn(map);
Mockito.verify(b).getMethodToMock(string);
aClass.invokeTestMethod();// This method calls the b.getMethodToMock()
}
}
我需要模拟getMethodToMock()。当我执行invokeTestMethod()时,它调用getMethodToMock()。那时,应该返回地图。相反,它正在执行getMethodToMock()并且它抛出一个错误(执行的问题是我需要从DB获取一些记录。我需要模拟这个方法并返回一个包含从DB检索的信息的地图)。我不确定模拟是否正常发生,因为在调试模式下,我能够看到getMethodToMock()被调用。请帮助我如何模拟此方法并跳过此方法的执行。
注意:我尝试过使用Powermockito,但我的测试用例是TestNGsuite。我需要运行TestNGSuite而不是将其作为Junit运行。