gdaniels 2002/11/04 08:35:22 Modified: java/test/functional TestElementSample.java Log: Pass exceptions up so we can see what's going on. Revision Changes Path 1.13 +8 -15 xml-axis/java/test/functional/TestElementSample.java Index: TestElementSample.java =================================================================== RCS file: /home/cvs/xml-axis/java/test/functional/TestElementSample.java,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- TestElementSample.java 18 Jul 2002 16:41:16 -0000 1.12 +++ TestElementSample.java 4 Nov 2002 16:35:22 -0000 1.13 @@ -103,22 +103,15 @@ } public void testElementService () throws Exception { - try { - log.info("Testing element sample."); - log.info("Testing deployment..."); - doTestDeploy(); - log.info("Testing service..."); - doTestElement(); - log.info("Testing undeployment..."); - doTestUndeploy(); - log.info("Test complete."); - } - catch( Exception e ) { - e.printStackTrace(); - throw new Exception("Fault returned from test: "+e); - } + log.info("Testing element sample."); + log.info("Testing deployment..."); + doTestDeploy(); + log.info("Testing service..."); + doTestElement(); + log.info("Testing undeployment..."); + doTestUndeploy(); + log.info("Test complete."); } - }