You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ni...@apache.org on 2010/03/11 09:57:10 UTC

svn commit: r921738 - /camel/trunk/components/camel-jetty/src/test/java/org/apache/camel/component/jetty/SpringHttpsRouteTest.java

Author: ningjiang
Date: Thu Mar 11 08:57:10 2010
New Revision: 921738

URL: http://svn.apache.org/viewvc?rev=921738&view=rev
Log:
CAMEL-2518 fixed the CS error of SpringHttpsRouteTest

Modified:
    camel/trunk/components/camel-jetty/src/test/java/org/apache/camel/component/jetty/SpringHttpsRouteTest.java

Modified: camel/trunk/components/camel-jetty/src/test/java/org/apache/camel/component/jetty/SpringHttpsRouteTest.java
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-jetty/src/test/java/org/apache/camel/component/jetty/SpringHttpsRouteTest.java?rev=921738&r1=921737&r2=921738&view=diff
==============================================================================
--- camel/trunk/components/camel-jetty/src/test/java/org/apache/camel/component/jetty/SpringHttpsRouteTest.java (original)
+++ camel/trunk/components/camel-jetty/src/test/java/org/apache/camel/component/jetty/SpringHttpsRouteTest.java Thu Mar 11 08:57:10 2010
@@ -16,10 +16,6 @@
  */
 package org.apache.camel.component.jetty;
 
-import static org.junit.Assert.assertNotNull;
-import static org.junit.Assert.assertTrue;
-import static org.junit.Assert.fail;
-
 import java.net.URL;
 import java.util.List;
 import java.util.Map;
@@ -43,8 +39,12 @@ import org.junit.runner.RunWith;
 import org.springframework.test.context.ContextConfiguration;
 import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
 
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertTrue;
+import static org.junit.Assert.fail;
+
 @RunWith(SpringJUnit4ClassRunner.class)
-@ContextConfiguration(locations={"/org/apache/camel/component/jetty/jetty-https.xml"})
+@ContextConfiguration(locations = {"/org/apache/camel/component/jetty/jetty-https.xml"})
 public class SpringHttpsRouteTest {
     private static final String NULL_VALUE_MARKER = CamelTestSupport.class.getCanonicalName();
     protected String expectedBody = "<hello>world!</hello>";
@@ -52,7 +52,7 @@ public class SpringHttpsRouteTest {
     protected Properties originalValues = new Properties();
     protected transient Log log = LogFactory.getLog(TestSupport.class);
 
-    @EndpointInject(uri="mock:a")
+    @EndpointInject(uri = "mock:a")
     MockEndpoint mockEndpoint;
     
     @Produce