Package org.geo.spatialsearch.rest.integration

Source Code of org.geo.spatialsearch.rest.integration.RestfulTest

package org.geo.spatialsearch.rest.integration;

import org.junit.After;
import org.junit.Before;

import com.sun.jersey.api.client.Client;
import com.sun.jersey.api.client.WebResource;

public class RestfulTest {

    public static final String URI = "http://localhost:8081/spatialsearch";

    private Client client;
    protected WebResource webResource;

    @Before
    public void setUp() throws Exception {
        client = new Client();
        webResource = client.resource(RestfulTest.URI);
    }

    @After
    public void tearDown() throws Exception {
    }

}
TOP

Related Classes of org.geo.spatialsearch.rest.integration.RestfulTest

TOP
Copyright © 2018 www.massapi.com. 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.