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 2009/08/12 16:28:00 UTC

svn commit: r803532 - in /cxf/trunk/systests/src/test/java/org/apache/cxf: jms/testsuite/testcases/SOAPJMSTestSuiteClientTest.java jms/testsuite/testcases/SOAPJMSTestSuiteServerTest.java systest/jms/JMSClientServerTest.java

Author: ningjiang
Date: Wed Aug 12 14:28:00 2009
New Revision: 803532

URL: http://svn.apache.org/viewvc?rev=803532&view=rev
Log:
CXF-2265 removed the unused codes

Removed:
    cxf/trunk/systests/src/test/java/org/apache/cxf/jms/testsuite/testcases/SOAPJMSTestSuiteClientTest.java
    cxf/trunk/systests/src/test/java/org/apache/cxf/jms/testsuite/testcases/SOAPJMSTestSuiteServerTest.java
Modified:
    cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jms/JMSClientServerTest.java

Modified: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jms/JMSClientServerTest.java
URL: http://svn.apache.org/viewvc/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jms/JMSClientServerTest.java?rev=803532&r1=803531&r2=803532&view=diff
==============================================================================
--- cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jms/JMSClientServerTest.java (original)
+++ cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jms/JMSClientServerTest.java Wed Aug 12 14:28:00 2009
@@ -737,27 +737,7 @@
                 fail(client.getException().getMessage());
             }
         }
-        /*
-         * The result is not certain. sometimes right, sometime wrong. because the thread.
-        //Sleep for up to 10 seconds.   The timeout should be at 5 seconds so this
-        //should bail earlier
-        for (int x = 0; x < 10; x++) {
-            Thread.sleep(1000);
-            
-            for (ClientRunnable client : clients) {
-                if (client.getException() != null 
-                    && client.getException().getMessage().contains("Timeout")) {
-                    // exceptions expected
-                    return;
-                }
-            }
-        }
        
-        fail("This is a negative pass. If this test passed this means that the missing QoS" 
-             + " has been added to the runtime or an unexpected exception received. " 
-             + " If latter is true, then read method comments for details on missing QoS"
-             + " and change this test to fail on exception");
-        */
     }
 
     /*