PageRenderTime 146ms CodeModel.GetById 1ms RepoModel.GetById 0ms app.codeStats 0ms

/gwtrpccommlayer/src/test/java/com/googlecode/gwtrpccommlayer/client/impl/GwtRpcCommLayerClientTest.java

https://code.google.com/p/gwtrpccommlayer/
Java | 50 lines | 29 code | 14 blank | 7 comment | 0 complexity | d24b1c7f61cec17aede783b96c32e2f0 MD5 | raw file
  1. package com.googlecode.gwtrpccommlayer.client.impl;
  2. import com.googlecode.gwtrpccommlayer.client.impl.GwtRpcCommLayerClient;
  3. import org.junit.Before;
  4. import org.junit.Test;
  5. import java.net.MalformedURLException;
  6. import java.net.URL;
  7. /**
  8. * Created by IntelliJ IDEA.
  9. * User: dan
  10. * Date: 10/30/10
  11. * Time: 9:42 PM
  12. */
  13. public class GwtRpcCommLayerClientTest {
  14. private GwtRpcCommLayerClient client;
  15. @Before
  16. public void setup() {
  17. try {
  18. this.client = new GwtRpcCommLayerClient(new URL("http://localhost"));
  19. } catch (MalformedURLException e) {
  20. e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
  21. }
  22. }
  23. @Test
  24. public void testCreateRemoteServicePojoProxy() throws Exception {
  25. //client.createRemoteServicePojoProxy(DispatchAsyn)
  26. }
  27. @Test
  28. public void testGetUrl() throws Exception {
  29. }
  30. @Test
  31. public void testSetGwtRpcClientSizeProxyImplClass() throws Exception {
  32. }
  33. @Test
  34. public void testGetGwtRpcClientSizeProxyImplClass() throws Exception {
  35. }
  36. }