Package com.baidu.qa.service.test.client

Examples of com.baidu.qa.service.test.client.SoapReqImpl


   
  }

  public boolean cleanTestDataBySoapRequest(File file, Config config,VariableGenerator vargen) {
    try{
      SoapReqImpl req = new SoapReqImpl();
      req.requestSoap(file, config, vargen);
      return true;
    }catch(Exception e){
      return false;
    }
  }
View Full Code Here


   
  }

  public boolean setTestDataBySoapRequest(File file, Config config,VariableGenerator vargen) {
    try{
      SoapReqImpl req = new SoapReqImpl();
      req.requestSoap(file, config, vargen);
      return true;
    }catch(Exception e){
      return false;
    }
  }
View Full Code Here


  public void verifyTestResultBySoapRequest(File file, Config config,
      VariableGenerator vargen) {
    try{
      SoapReqImpl req = new SoapReqImpl();
      req.requestSoap(file, config, vargen);
    }catch(Exception e){
      throw new AssertionError("verify test result by soap request fail");
    }
  }
View Full Code Here

TOP

Related Classes of com.baidu.qa.service.test.client.SoapReqImpl

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.