}
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);
}