You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by bu...@apache.org on 2002/01/18 21:15:14 UTC

cvs commit: xml-axis/java/docs developers-guide.html

butek       02/01/18 12:15:14

  Modified:    java/docs developers-guide.html
  Log:
  Added a how-to for running a single functional test.
  
  Revision  Changes    Path
  1.6       +9 -0      xml-axis/java/docs/developers-guide.html
  
  Index: developers-guide.html
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/docs/developers-guide.html,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- developers-guide.html	4 Jan 2002 19:09:41 -0000	1.5
  +++ developers-guide.html	18 Jan 2002 20:15:14 -0000	1.6
  @@ -378,5 +378,14 @@
   <blockquote><tt>ant functional-tests -Dtest.functional.SimpleAxisPort=8011
   -Dtest.functional.fail=no</tt></blockquote>
   The SOAP messages for all of the tests should appear in the tcpmon window.
  +
  +<h4>Running a single functional test</h4>
  +In one window start the server:
  +<br>
  +<blockquote><tt>java org.apache.axis.transport.http.SimpleAxisServer -p 8080</tt></blockquote>
  +In another window, first deploy the service you're testing:
  +<blockquote><tt>java org.apache.axis.client.AdminClient deploy.wsdd</tt></blockquote>
  +Then bring up the JUnit user interface with your test.  For example, to run the the multithread test case:
  +<blockquote><tt>java junit.swingui.TestRunner -noloading test.wsdl.multithread.MultithreadTestCase</tt></blockquote>
   </body>
   </html>