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 2008/11/16 14:33:27 UTC

svn commit: r718026 - in /activemq/camel/trunk/components/camel-spring/src/test: java/org/apache/camel/spring/remoting/SpringRemotingRouteTest.java resources/org/apache/camel/spring/remoting/spring.xml

Author: ningjiang
Date: Sun Nov 16 05:33:26 2008
New Revision: 718026

URL: http://svn.apache.org/viewvc?rev=718026&view=rev
Log:
Fixed the SpringRemotingRouteTest

Modified:
    activemq/camel/trunk/components/camel-spring/src/test/java/org/apache/camel/spring/remoting/SpringRemotingRouteTest.java
    activemq/camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/remoting/spring.xml

Modified: activemq/camel/trunk/components/camel-spring/src/test/java/org/apache/camel/spring/remoting/SpringRemotingRouteTest.java
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-spring/src/test/java/org/apache/camel/spring/remoting/SpringRemotingRouteTest.java?rev=718026&r1=718025&r2=718026&view=diff
==============================================================================
--- activemq/camel/trunk/components/camel-spring/src/test/java/org/apache/camel/spring/remoting/SpringRemotingRouteTest.java (original)
+++ activemq/camel/trunk/components/camel-spring/src/test/java/org/apache/camel/spring/remoting/SpringRemotingRouteTest.java Sun Nov 16 05:33:26 2008
@@ -32,7 +32,7 @@
 public class SpringRemotingRouteTest extends TestCase {
     private static final Log LOG = LogFactory.getLog(SpringRemotingRouteTest.class);
 
-    public void testPojoRoutes() throws Exception {
+    public void testBeanRoutes() throws Exception {
         AbstractXmlApplicationContext applicationContext = createApplicationContext();
 /*
         Object service = applicationContext.getBean("say");

Modified: activemq/camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/remoting/spring.xml
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/remoting/spring.xml?rev=718026&r1=718025&r2=718026&view=diff
==============================================================================
--- activemq/camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/remoting/spring.xml (original)
+++ activemq/camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/remoting/spring.xml Sun Nov 16 05:33:26 2008
@@ -38,7 +38,7 @@
   <camelContext id="camel" xmlns="http://activemq.apache.org/camel/schema/spring">
     <route>
       <from uri="direct:say"/>
-      <to uri="pojo:sayService"/>
+      <to uri="bean:sayService"/>
     </route>
   </camelContext>
   <!-- END SNIPPET: example -->