You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by he...@apache.org on 2008/06/11 20:15:01 UTC

svn commit: r666762 - in /struts/struts2/trunk/plugins/codebehind/src/test/java/org/apache/struts2: codebehind/CodebehindUnknownHandlerTest.java config/ClasspathPackageProviderTest.java

Author: hermanns
Date: Wed Jun 11 11:15:01 2008
New Revision: 666762

URL: http://svn.apache.org/viewvc?rev=666762&view=rev
Log:
WW-2623 Struts 2.1.3 omnibus ticket
o optimzed imports

Modified:
    struts/struts2/trunk/plugins/codebehind/src/test/java/org/apache/struts2/codebehind/CodebehindUnknownHandlerTest.java
    struts/struts2/trunk/plugins/codebehind/src/test/java/org/apache/struts2/config/ClasspathPackageProviderTest.java

Modified: struts/struts2/trunk/plugins/codebehind/src/test/java/org/apache/struts2/codebehind/CodebehindUnknownHandlerTest.java
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/codebehind/src/test/java/org/apache/struts2/codebehind/CodebehindUnknownHandlerTest.java?rev=666762&r1=666761&r2=666762&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/codebehind/src/test/java/org/apache/struts2/codebehind/CodebehindUnknownHandlerTest.java (original)
+++ struts/struts2/trunk/plugins/codebehind/src/test/java/org/apache/struts2/codebehind/CodebehindUnknownHandlerTest.java Wed Jun 11 11:15:01 2008
@@ -21,23 +21,20 @@
 
 package org.apache.struts2.codebehind;
 
-import java.net.MalformedURLException;
-import java.net.URL;
-import java.util.Collections;
-import java.util.HashMap;
-
-import javax.servlet.ServletContext;
-
-import org.apache.struts2.StrutsTestCase;
-import org.apache.struts2.config.NullResult;
-import org.apache.struts2.dispatcher.ServletDispatcherResult;
-
 import com.mockobjects.dynamic.C;
 import com.mockobjects.dynamic.Mock;
 import com.opensymphony.xwork2.*;
-import com.opensymphony.xwork2.config.entities.ResultTypeConfig;
 import com.opensymphony.xwork2.config.entities.ActionConfig;
+import com.opensymphony.xwork2.config.entities.ResultTypeConfig;
 import com.opensymphony.xwork2.util.XWorkTestCaseHelper;
+import org.apache.struts2.StrutsTestCase;
+import org.apache.struts2.dispatcher.ServletDispatcherResult;
+
+import javax.servlet.ServletContext;
+import java.net.MalformedURLException;
+import java.net.URL;
+import java.util.Collections;
+import java.util.HashMap;
 
 public class CodebehindUnknownHandlerTest extends StrutsTestCase {
 

Modified: struts/struts2/trunk/plugins/codebehind/src/test/java/org/apache/struts2/config/ClasspathPackageProviderTest.java
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/codebehind/src/test/java/org/apache/struts2/config/ClasspathPackageProviderTest.java?rev=666762&r1=666761&r2=666762&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/codebehind/src/test/java/org/apache/struts2/config/ClasspathPackageProviderTest.java (original)
+++ struts/struts2/trunk/plugins/codebehind/src/test/java/org/apache/struts2/config/ClasspathPackageProviderTest.java Wed Jun 11 11:15:01 2008
@@ -21,20 +21,15 @@
 
 package org.apache.struts2.config;
 
-import java.util.HashMap;
-import java.util.Map;
-
-import org.apache.struts2.dispatcher.ServletDispatcherResult;
-import org.apache.struts2.util.StrutsTestCaseHelper;
-
 import com.opensymphony.xwork2.config.Configuration;
 import com.opensymphony.xwork2.config.entities.ActionConfig;
 import com.opensymphony.xwork2.config.entities.PackageConfig;
-import com.opensymphony.xwork2.config.entities.ResultConfig;
 import com.opensymphony.xwork2.config.entities.ResultTypeConfig;
 import com.opensymphony.xwork2.config.impl.DefaultConfiguration;
-
 import junit.framework.TestCase;
+import org.apache.struts2.dispatcher.ServletDispatcherResult;
+
+import java.util.Map;
 
 public class ClasspathPackageProviderTest extends TestCase {