You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gn...@apache.org on 2012/01/18 11:28:04 UTC

svn commit: r1232816 - in /camel/trunk/components/camel-test-blueprint/src/test: java/org/apache/camel/test/blueprint/DebugBlueprintTest.java resources/org/apache/camel/test/blueprint/camelContext.xml

Author: gnodet
Date: Wed Jan 18 10:28:04 2012
New Revision: 1232816

URL: http://svn.apache.org/viewvc?rev=1232816&view=rev
Log:
[CAMEL-4891] Document camel-test-blueprint

Modified:
    camel/trunk/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/DebugBlueprintTest.java
    camel/trunk/components/camel-test-blueprint/src/test/resources/org/apache/camel/test/blueprint/camelContext.xml

Modified: camel/trunk/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/DebugBlueprintTest.java
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/DebugBlueprintTest.java?rev=1232816&r1=1232815&r2=1232816&view=diff
==============================================================================
--- camel/trunk/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/DebugBlueprintTest.java (original)
+++ camel/trunk/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/DebugBlueprintTest.java Wed Jan 18 10:28:04 2012
@@ -22,6 +22,7 @@ import java.util.Collections;
 
 import org.junit.Test;
 
+// START SNIPPET: example
 public class DebugBlueprintTest extends CamelBlueprintTestSupport {
 
     @Override
@@ -42,3 +43,4 @@ public class DebugBlueprintTest extends 
     }
 
 }
+// END SNIPPET: example

Modified: camel/trunk/components/camel-test-blueprint/src/test/resources/org/apache/camel/test/blueprint/camelContext.xml
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-test-blueprint/src/test/resources/org/apache/camel/test/blueprint/camelContext.xml?rev=1232816&r1=1232815&r2=1232816&view=diff
==============================================================================
--- camel/trunk/components/camel-test-blueprint/src/test/resources/org/apache/camel/test/blueprint/camelContext.xml (original)
+++ camel/trunk/components/camel-test-blueprint/src/test/resources/org/apache/camel/test/blueprint/camelContext.xml Wed Jan 18 10:28:04 2012
@@ -15,9 +15,9 @@
     See the License for the specific language governing permissions and
     limitations under the License.
 -->
+<!-- START SNIPPET: example -->
 <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0">
 
-
 	<camelContext id="camelContext" xmlns="http://camel.apache.org/schema/blueprint" trace="true" autoStartup="true" >
 
 		<route>
@@ -29,4 +29,5 @@
 		</route>
 	</camelContext>
 
-</blueprint>
\ No newline at end of file
+</blueprint>
+<!-- END SNIPPET: example -->