1 package org.codehaus.xfire.client.http; 2 3 import junit.framework.TestCase; 4 5 /*** 6 * @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a> 7 * @since Oct 26, 2004 8 */ 9 public class EchoTest 10 extends TestCase 11 { 12 public void testEcho() throws Exception 13 { 14 EchoClient client = new EchoClient(); 15 16 client.writeRequest(System.out); 17 18 client.invoke(); 19 } 20 }