因此,基本上,我试图使用powermockito为使用Web服务的服务类的适配器编写一个Junit。
我有一个带有构造函数的适配器,它通过调用一个超类在自己的构造函数中创建一个新的服务对象。我必须测试我的适配器。我已经使用powermockito来模拟我的适配器和服务类,但我认为模拟对象无法执行超级调用。以下是我的代码结构。我希望超级类在调用时返回我嘲笑的对象。
public class CommonPoolingServiceAdp {
private CPSSecurity cpsServicePort;
public CommonPoolingServiceAdp() {
CommonPoolingService service= new CommonPoolingService();
cpsServicePort=service.getCommonPoolingServicePort();
}
public SercurityDataResponse getBroadcastElements(broadcastReqObj)
{
SercurityDataResponse=null;
response=cpsServicePort.getBroadcastElements(broadcaseRequestObj);
}
}
public class CommonPoolingService extends Service {
{
static
{
//few mandatory initializations
}
public CommonPoolingService()
{
super(WSDL_Location,QName);
}
public CSPSecurity getCommonPoolingServicePort() {
return super.getPort(QName);
}
}
}
请分享更多您的代码。顺便说一句,这就是你模拟超类方法的方式:
public class SuperClass {
public void method() {
methodA(); // I don't want to run this!
}
}
public class MyClass extends SuperClass{
public void method(){
super.method()
methodB(); // I only want to test this!
}
}
@Test
public void testMethod() {
MyClass spy = Mockito.spy(new MyClass());
// Prevent/stub logic in super.method()
Mockito.doNothing().when((SuperClass)spy).methodA();
// When
spy.method();
// Then
verify(spy).methodB();
}
希望,这会有所帮助。