167168169170171172173174175176177178179180
assertEquals(data, echoed); } @Test public void testError() throws IOException { TestError error = null; try { proxy.error(); } catch (TestError e) { error = e; } assertNotNull(error); assertEquals("an error", error.getMessage$().toString()); }
125126127128129130131132
assertEquals("goodbye", response); } @Test public void testHashCode() throws IOException { TestError error = new TestError(); error.hashCode(); }