Package com.eviware.soapui.impl.wsdl.teststeps

Examples of com.eviware.soapui.impl.wsdl.teststeps.RestTestRequestStepInterface


          exchange = new WsdlResponseMessageExchange( testRequestStep.getTestRequest() );
          ( ( WsdlResponseMessageExchange )exchange ).setResponse( testRequestStep.getTestRequest().getResponse() );
        }
        else if( testStep instanceof RestTestRequestStepInterface )
        {
          RestTestRequestStepInterface testRequestStep = ( RestTestRequestStepInterface )testStep;
          exchange = new RestResponseMessageExchange( ( RestRequestInterface )testRequestStep.getTestRequest() );
          ( ( RestResponseMessageExchange )exchange )
              .setResponse( ( ( AbstractHttpRequestInterface<?> )testRequestStep.getTestRequest() )
                  .getResponse() );
        }
        else if( testStep instanceof HttpTestRequestStepInterface )
        {
          HttpTestRequestStepInterface testRequestStep = ( HttpTestRequestStepInterface )testStep;
          exchange = new HttpResponseMessageExchange( testRequestStep.getTestRequest() );
          ( ( HttpResponseMessageExchange )exchange )
              .setResponse( ( ( AbstractHttpRequestInterface<?> )testRequestStep.getTestRequest() )
                  .getResponse() );
        }
        else if( testStep instanceof WsdlMockResponseTestStep )
        {
          WsdlMockResponseTestStep mockResponseStep = ( WsdlMockResponseTestStep )testStep;
View Full Code Here

TOP

Related Classes of com.eviware.soapui.impl.wsdl.teststeps.RestTestRequestStepInterface

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.