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

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


    TearDownWithServiceInterface {

  public boolean cleanTestDataByHttpRequest(File file, Config config,VariableGenerator vargen) {

    try{
      HttpReqImpl req = new HttpReqImpl();
      req.requestHttpByHttpClient(file, config, vargen);
      return true;
    }catch(Exception e){
      return false;
    }
   
View Full Code Here


    SetUpWithServiceInterface {

  public boolean setTestDataByHttpRequest(File file, Config config,VariableGenerator vargen) {

    try{
      HttpReqImpl req = new HttpReqImpl();
      req.requestHttpByHttpClient(file, config, vargen);
      return true;
    }catch(Exception e){
      return false;
    }
   
View Full Code Here


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

TOP

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

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.