Return-Path: Delivered-To: apmail-xml-axis-dev-archive@xml.apache.org Received: (qmail 72820 invoked by uid 500); 28 Mar 2002 22:42:04 -0000 Mailing-List: contact axis-dev-help@xml.apache.org; run by ezmlm Precedence: bulk Reply-To: axis-dev@xml.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list axis-dev@xml.apache.org Received: (qmail 72811 invoked by uid 500); 28 Mar 2002 22:42:04 -0000 Delivered-To: apmail-xml-axis-cvs@apache.org Date: 28 Mar 2002 22:42:03 -0000 Message-ID: <20020328224203.54329.qmail@icarus.apache.org> From: gdaniels@apache.org To: xml-axis-cvs@apache.org Subject: cvs commit: xml-axis/java/test/functional TestEchoSample.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N gdaniels 02/03/28 14:42:03 Modified: java/test/functional TestEchoSample.java Log: Use "test mode" for our tests. Revision Changes Path 1.13 +3 -2 xml-axis/java/test/functional/TestEchoSample.java Index: TestEchoSample.java =================================================================== RCS file: /home/cvs/xml-axis/java/test/functional/TestEchoSample.java,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- TestEchoSample.java 19 Feb 2002 22:46:41 -0000 1.12 +++ TestEchoSample.java 28 Mar 2002 22:42:03 -0000 1.13 @@ -85,8 +85,9 @@ "samples/echo/deploy.wsdd"}; AdminClient.main(args); - // define the tests using JUnit assert facilities - TestClient client = new TestClient() { + // define the tests using JUnit assert facilities, and tell client to + // throw any exceptions it catches. + TestClient client = new TestClient(true) { public void verify(String method, Object sent, Object gotBack) { assertTrue("What was sent was not received--" + method + ": " + gotBack, equals(sent, gotBack)); }