Package org.simpleframework.http.resource

Examples of org.simpleframework.http.resource.Resource


        assertThat(resource, is(instanceOf(CiEyeResource.class)));
    }
   
    @Test public void
    handlesAddNoteRequest() {
        final Resource resource = engine.resolve(new AddressParser("http://ci-eye/landscapes/myLandscape/addNote"));
        assertThat(resource, is(instanceOf(CiEyeResource.class)));
    }
View Full Code Here


    handlesDohRequest() {
        context.checking(new Expectations() {{
            oneOf(landscapeFetcher).landscapeNamed("myLandscape");
        }});
       
        final Resource resource = engine.resolve(new AddressParser("http://ci-eye/landscapes/myLandscape/doh"));
       
        context.assertIsSatisfied();
        assertThat(resource, is(instanceOf(CiEyeResource.class)));
    }
View Full Code Here

TOP

Related Classes of org.simpleframework.http.resource.Resource

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.