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 2011/12/31 05:17:37 UTC

svn commit: r1226034 - /camel/branches/camel-2.8.x/camel-core/src/test/java/org/apache/camel/language/SimpleWithPropertiesTest.java

Author: ningjiang
Date: Sat Dec 31 04:17:37 2011
New Revision: 1226034

URL: http://svn.apache.org/viewvc?rev=1226034&view=rev
Log:
CAMEL-4843 clean up the test code

Modified:
    camel/branches/camel-2.8.x/camel-core/src/test/java/org/apache/camel/language/SimpleWithPropertiesTest.java

Modified: camel/branches/camel-2.8.x/camel-core/src/test/java/org/apache/camel/language/SimpleWithPropertiesTest.java
URL: http://svn.apache.org/viewvc/camel/branches/camel-2.8.x/camel-core/src/test/java/org/apache/camel/language/SimpleWithPropertiesTest.java?rev=1226034&r1=1226033&r2=1226034&view=diff
==============================================================================
--- camel/branches/camel-2.8.x/camel-core/src/test/java/org/apache/camel/language/SimpleWithPropertiesTest.java (original)
+++ camel/branches/camel-2.8.x/camel-core/src/test/java/org/apache/camel/language/SimpleWithPropertiesTest.java Sat Dec 31 04:17:37 2011
@@ -22,8 +22,6 @@ import org.apache.camel.builder.SimpleBu
 import org.apache.camel.component.properties.PropertiesComponent;
 import org.apache.camel.impl.DefaultCamelContext;
 import org.apache.camel.impl.DefaultExchange;
-import org.apache.camel.impl.JndiRegistry;
-import org.apache.camel.impl.SimpleRegistry;
 import org.junit.Assert;
 import org.junit.Test;
 
@@ -32,15 +30,6 @@ import org.junit.Test;
  */
 public class SimpleWithPropertiesTest {
 
-    /**
-     * A property from the property component in a expression 
-     * should be kept as is to be processed later
-     * See https://issues.apache.org/jira/browse/CAMEL-4843
-     * 
-     * The property could also be parsed correctly by the simple language but it should not throw an exception
-     * 
-     * @throws Exception
-     */
     @Test
     public void testProperty() throws Exception {
         PropertiesComponent pc = new PropertiesComponent();
@@ -48,7 +37,6 @@ public class SimpleWithPropertiesTest {
         CamelContext context = new DefaultCamelContext();
         pc.setCamelContext(context);
         context.addComponent("properties", pc);
-        // try to setup the propety
         Exchange exchange = new DefaultExchange(context);
         String result = SimpleBuilder.simple("${properties:test}").evaluate(exchange, String.class);
         Assert.assertEquals("testValue", result);