You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by rf...@apache.org on 2006/08/24 02:12:09 UTC

svn commit: r434261 - /incubator/tuscany/java/samples/sca/helloworldwsclient/src/test/java/helloworld/HelloWorldWSClient.java

Author: rfeng
Date: Wed Aug 23 17:12:08 2006
New Revision: 434261

URL: http://svn.apache.org/viewvc?rev=434261&view=rev
Log:
Modified the test case to invoke an operation twice to make sure the Axis2 binding code is reentrant

Modified:
    incubator/tuscany/java/samples/sca/helloworldwsclient/src/test/java/helloworld/HelloWorldWSClient.java

Modified: incubator/tuscany/java/samples/sca/helloworldwsclient/src/test/java/helloworld/HelloWorldWSClient.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/samples/sca/helloworldwsclient/src/test/java/helloworld/HelloWorldWSClient.java?rev=434261&r1=434260&r2=434261&view=diff
==============================================================================
--- incubator/tuscany/java/samples/sca/helloworldwsclient/src/test/java/helloworld/HelloWorldWSClient.java (original)
+++ incubator/tuscany/java/samples/sca/helloworldwsclient/src/test/java/helloworld/HelloWorldWSClient.java Wed Aug 23 17:12:08 2006
@@ -45,6 +45,8 @@
     public void testWSClient() {
         String msg = helloWorldService.getGreetings("John");
         Assert.assertEquals("Hello John", msg);
+        msg = helloWorldService.getGreetings("Smith");
+        Assert.assertEquals("Hello Smith", msg);
     }
 
 }



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org