Package de.devbliss.apitester

Examples of de.devbliss.apitester.Context


    public ApiResponse makeDeleteRequest(URI uri, Object obj) throws Exception {
      return makeDeleteRequest(uri, obj, null);
  }

    public ApiResponse makeDeleteRequest(URI uri, Object obj, Map<String, String> additionalHeaders) throws Exception {
        Context context = doDeleteRequest(uri, obj, additionalHeaders);
        sayRequest(context.apiRequest, obj);
        docTestMachine.sayResponse(context.apiResponse, headersToShow);
        return context.apiResponse;
    }
View Full Code Here

TOP

Related Classes of de.devbliss.apitester.Context

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.