powerMockito错误"The system cannot find the path specified"



谁能帮我如何嘲笑这个电话?

实际代码

final ServicesLocal servicesBean = new WSDelegate().getServiceLocal();

这是我的模拟代码

mockDelegate = mock(PortalDelegate.class);
PowerMockito.whenNew(PortalDelegate.class).withAnyArguments().thenReturn(mockPortalDelegate);

您还必须为方法调用添加when

ServicesLocal mockServicesLocal = mock(ServicesLocal.class);
when(mockDelegate.getServiceLocal()).thenReturn(mockServicesLocal);

相关内容

  • 没有找到相关文章

最新更新