[jboss-remoting-commits] JBoss Remoting SVN: r4218 - remoting2/branches/2.x/src/tests/org/jboss/test/remoting/performance/asynchronous.

jboss-remoting-commits at lists.jboss.org jboss-remoting-commits at lists.jboss.org
Wed May 21 23:45:41 EDT 2008


Author: ron.sigal at jboss.com
Date: 2008-05-21 23:45:41 -0400 (Wed, 21 May 2008)
New Revision: 4218

Modified:
   remoting2/branches/2.x/src/tests/org/jboss/test/remoting/performance/asynchronous/PerformanceClientSideClientTest.java
Log:
JBREM-982:  Added main().

Modified: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/performance/asynchronous/PerformanceClientSideClientTest.java
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/performance/asynchronous/PerformanceClientSideClientTest.java	2008-05-22 03:43:51 UTC (rev 4217)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/performance/asynchronous/PerformanceClientSideClientTest.java	2008-05-22 03:45:41 UTC (rev 4218)
@@ -52,5 +52,30 @@
    {
       //NO OP since no return
    }
+   
+   public static void main(String[] args)
+   {
+      PerformanceClientSideClientTest test = new PerformanceClientSideClientTest();
+      try
+      {
+         test.setUp();
+         test.testClientCalls();
+      }
+      catch(Throwable throwable)
+      {
+         throwable.printStackTrace();
+      }
+      finally
+      {
+         try
+         {
+            test.tearDown();
+         }
+         catch(Exception e)
+         {
+            e.printStackTrace();
+         }
+      }
+   }
 
 }
\ No newline at end of file




More information about the jboss-remoting-commits mailing list