有人可以帮我模拟这个电话吗?
实际代码
final ServicesLocal servicesBean = new WSDelegate().getServiceLocal();
这是我的模拟代码
mockDelegate = mock(PortalDelegate.class);
PowerMockito.whenNew(PortalDelegate.class).withAnyArguments().thenReturn(mockPortalDelegate);
有人可以帮我模拟这个电话吗?
实际代码
final ServicesLocal servicesBean = new WSDelegate().getServiceLocal();
这是我的模拟代码
mockDelegate = mock(PortalDelegate.class);
PowerMockito.whenNew(PortalDelegate.class).withAnyArguments().thenReturn(mockPortalDelegate);