You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2017/03/13 19:06:09 UTC

[5/5] camel git commit: CAMEL-10918 create sjms2 component to add support for JMS 2.0

CAMEL-10918 create sjms2 component to add support for JMS 2.0


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/f8234821
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/f8234821
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/f8234821

Branch: refs/heads/master
Commit: f8234821b55722b6d10d20bd7d23e37699b182d9
Parents: 5259843
Author: Claus Ibsen <da...@apache.org>
Authored: Mon Mar 13 20:05:25 2017 +0100
Committer: Claus Ibsen <da...@apache.org>
Committed: Mon Mar 13 20:05:25 2017 +0100

----------------------------------------------------------------------
 .../camel/itest/karaf/CamelSjms2Test.java       | 34 ++++++++++++++++++++
 1 file changed, 34 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/f8234821/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelSjms2Test.java
----------------------------------------------------------------------
diff --git a/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelSjms2Test.java b/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelSjms2Test.java
new file mode 100644
index 0000000..2ff9a7c
--- /dev/null
+++ b/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelSjms2Test.java
@@ -0,0 +1,34 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.itest.karaf;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.ops4j.pax.exam.junit.PaxExam;
+
+@RunWith(PaxExam.class)
+public class CamelSjms2Test extends BaseKarafTest {
+
+    public static final String COMPONENT = extractName(CamelSjms2Test.class);
+
+    @Test
+    public void test() throws Exception {
+        testComponent(COMPONENT);
+    }
+
+
+}
\ No newline at end of file