All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.greenmoonsoftware.tea.GreenTeaRestClient.groovy Maven / Gradle / Ivy

Go to download

A Groovy framework for functional testing rest services. Intended to help you relax while you REST.

There is a newer version: 1.0.12
Show newest version
package com.greenmoonsoftware.tea

import groovyx.net.http.RESTClient
import org.apache.http.client.HttpClient
import org.apache.http.params.HttpParams

class GreenTeaRestClient extends RESTClient {
    GreenTeaRestClient(String s) {
        super(s)
    }

    protected HttpClient createClient(HttpParams params) {
        return new GreenTeaHttpClient(params)
    }

    def getRequest() {
        def client = getClient()
        println client.class
        client.request
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy