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/01/29 16:54:35 UTC

[5/6] camel git commit: CAMEL-10740: Added karaf itest

CAMEL-10740: Added karaf itest


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

Branch: refs/heads/master
Commit: b24af35f986c4272e5073e54c5164932057bf0d0
Parents: 13a7c07
Author: Claus Ibsen <da...@apache.org>
Authored: Sun Jan 29 17:47:54 2017 +0100
Committer: Claus Ibsen <da...@apache.org>
Committed: Sun Jan 29 17:47:54 2017 +0100

----------------------------------------------------------------------
 .../apache/camel/itest/karaf/CamelTikaTest.java | 33 ++++++++++++++++++++
 1 file changed, 33 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/b24af35f/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelTikaTest.java
----------------------------------------------------------------------
diff --git a/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelTikaTest.java b/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelTikaTest.java
new file mode 100644
index 0000000..be57b59
--- /dev/null
+++ b/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelTikaTest.java
@@ -0,0 +1,33 @@
+/**
+ * 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 CamelTikaTest extends BaseKarafTest {
+
+    public static final String COMPONENT = extractName(CamelTikaTest.class);
+
+    @Test
+    public void test() throws Exception {
+        testComponent(COMPONENT);
+    }
+
+}
\ No newline at end of file