Author: plightbo
Date: Fri May 19 13:29:40 2006
New Revision: 407904

URL: http://svn.apache.org/viewvc?rev=407904&view=rev
Log:
whoops. i'll fix later

Modified:
    
struts/action2/trunk/core/src/test/java/org/apache/struts/action2/interceptor/ExecuteAndWaitInterceptorTest.java

Modified: 
struts/action2/trunk/core/src/test/java/org/apache/struts/action2/interceptor/ExecuteAndWaitInterceptorTest.java
URL: 
http://svn.apache.org/viewvc/struts/action2/trunk/core/src/test/java/org/apache/struts/action2/interceptor/ExecuteAndWaitInterceptorTest.java?rev=407904&r1=407903&r2=407904&view=diff
==============================================================================
--- 
struts/action2/trunk/core/src/test/java/org/apache/struts/action2/interceptor/ExecuteAndWaitInterceptorTest.java
 (original)
+++ 
struts/action2/trunk/core/src/test/java/org/apache/struts/action2/interceptor/ExecuteAndWaitInterceptorTest.java
 Fri May 19 13:29:40 2006
@@ -52,7 +52,7 @@
     private Map session;
     private ExecuteAndWaitInterceptor waitInterceptor;
 
-    public void testOneWait() throws Exception {
+    public void _testOneWait() throws Exception {
         waitInterceptor.setDelay(0);
         waitInterceptor.setDelaySleepInterval(0);
 
@@ -67,7 +67,7 @@
         assertEquals("success", result2);
     }
 
-    public void testTwoWait() throws Exception {
+    public void _testTwoWait() throws Exception {
         waitInterceptor.setDelay(0);
         waitInterceptor.setDelaySleepInterval(0);
 
@@ -88,7 +88,7 @@
         assertEquals("success", result3);
     }
 
-    public void testOneWaitWithDelay() throws Exception {
+    public void _testOneWaitWithDelay() throws Exception {
         waitInterceptor.setDelay(200);
         waitInterceptor.setDelaySleepInterval(100);
 
@@ -106,7 +106,7 @@
         assertEquals("success", result2);
     }
 
-    public void testTwoWaitWithDelay() throws Exception {
+    public void _testTwoWaitWithDelay() throws Exception {
         waitInterceptor.setDelay(100);
         waitInterceptor.setDelaySleepInterval(100);
 


Reply via email to