You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2017/08/09 08:55:30 UTC

[3/3] camel git commit: CAMEL-11653 - Added a Karaf feature test for Camel-Nagios

CAMEL-11653 - Added a Karaf feature test for Camel-Nagios


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

Branch: refs/heads/master
Commit: 48c411b2ad174d1b78374f5b2c7d6dd2156e283d
Parents: 4b63fc6
Author: Andrea Cosentino <an...@gmail.com>
Authored: Wed Aug 9 10:54:39 2017 +0200
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Wed Aug 9 10:54:39 2017 +0200

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


http://git-wip-us.apache.org/repos/asf/camel/blob/48c411b2/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelNagiosTest.java
----------------------------------------------------------------------
diff --git a/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelNagiosTest.java b/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelNagiosTest.java
new file mode 100644
index 0000000..c44c8c1
--- /dev/null
+++ b/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelNagiosTest.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 CamelNagiosTest extends BaseKarafTest {
+
+    public static final String COMPONENT = extractName(CamelNagiosTest.class);
+
+    @Test
+    public void test() throws Exception {
+        testComponent(COMPONENT);
+    }
+
+}