@Test
public void testCreate() throws Exception {
GwtRpcService service = new GwtRpcServiceImpl();
URL mockUrl = new URL("http://google.com");
TestService testService =service.create(mockUrl, TestService.class);
Preconditions.checkNotNull(testService);
List<Cookie> lstCookies = mock(List.class);
testService =service.create(mockUrl, TestService.class, lstCookies);
Preconditions.checkNotNull(testService);