Package org.fusesource.restygwt.examples.client

Examples of org.fusesource.restygwt.examples.client.MapService


    }

    private static final int REQUEST_TIMEOUT = 2000;

    public void testGet() {
        MapService service = GWT.create(MapService.class);
        Map<String, String> map = new LinkedHashMap<String, String>();
        map.put("hello", "world");
        map.put("another", "value");
        service.get(expectResult(new MapResult(map)));
        delayTestFinish(REQUEST_TIMEOUT);
    }
View Full Code Here


    }

    private static final int REQUEST_TIMEOUT = 2000;

    public void testGet() {
        MapService service = GWT.create(MapService.class);
        Map<String, String> map = new LinkedHashMap<String, String>();
        map.put("hello", "world");
        map.put("another", "value");
        service.get(expectResult(new MapResult(map)));
        delayTestFinish(REQUEST_TIMEOUT);
    }
View Full Code Here

    }

    private static final int REQUEST_TIMEOUT = 2000;

    public void testGet() {
        MapService service = GWT.create(MapService.class);
        Map<String, String> map = new LinkedHashMap<String, String>();
        map.put("hello", "world");
        map.put("another", "value");
        service.get(expectResult(new MapResult(map)));
        delayTestFinish(REQUEST_TIMEOUT);
    }
View Full Code Here

TOP

Related Classes of org.fusesource.restygwt.examples.client.MapService

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.