You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by ni...@apache.org on 2007/06/25 12:01:58 UTC

svn commit: r550441 - in /incubator/cxf/trunk/benchmark/performance: basic_type/src/org/apache/cxf/performance/basic_type/client/Client.java complex_type/src/org/apache/cxf/performance/complex_type/client/Client.java

Author: ningjiang
Date: Mon Jun 25 03:01:57 2007
New Revision: 550441

URL: http://svn.apache.org/viewvc?view=rev&rev=550441
Log:
Print right testcase name

Modified:
    incubator/cxf/trunk/benchmark/performance/basic_type/src/org/apache/cxf/performance/basic_type/client/Client.java
    incubator/cxf/trunk/benchmark/performance/complex_type/src/org/apache/cxf/performance/complex_type/client/Client.java

Modified: incubator/cxf/trunk/benchmark/performance/basic_type/src/org/apache/cxf/performance/basic_type/client/Client.java
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/benchmark/performance/basic_type/src/org/apache/cxf/performance/basic_type/client/Client.java?view=diff&rev=550441&r1=550440&r2=550441
==============================================================================
--- incubator/cxf/trunk/benchmark/performance/basic_type/src/org/apache/cxf/performance/basic_type/client/Client.java (original)
+++ incubator/cxf/trunk/benchmark/performance/basic_type/src/org/apache/cxf/performance/basic_type/client/Client.java Mon Jun 25 03:01:57 2007
@@ -48,7 +48,7 @@
     private BasicPortType port;
 
     public Client(String[] args) {
-        super("Base TestCase", args);
+        super("Basic Type TestCase", args);
         serviceName = "BasicService";
         portName = "BasicPortType";
         operationName = "echoString";

Modified: incubator/cxf/trunk/benchmark/performance/complex_type/src/org/apache/cxf/performance/complex_type/client/Client.java
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/benchmark/performance/complex_type/src/org/apache/cxf/performance/complex_type/client/Client.java?view=diff&rev=550441&r1=550440&r2=550441
==============================================================================
--- incubator/cxf/trunk/benchmark/performance/complex_type/src/org/apache/cxf/performance/complex_type/client/Client.java (original)
+++ incubator/cxf/trunk/benchmark/performance/complex_type/src/org/apache/cxf/performance/complex_type/client/Client.java Mon Jun 25 03:01:57 2007
@@ -51,7 +51,7 @@
     private final NestedComplexTypeSeq complexTypeSeq = new NestedComplexTypeSeq();
        
     public Client(String[] args) {
-        super("Base TestCase", args);
+        super("Complex Type TestCase", args);
         serviceName = "ComplexService";
         portName = "ComplexPortType";
         operationName = "sendReceiveData";