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/12/07 08:33:10 UTC

[camel] branch master updated (2231128 -> 2bc791f)

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git.


    from 2231128  CAMEL-10613: Fixed CS
     new c3bf0f5  Added a Karaf feature test for camel-restlet-jackson
     new 2bc791f  Added a Karaf feature test for camel-restlet-gson

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../karaf/{CamelRestletTest.java => CamelRestletGsonTest.java}      | 6 +++---
 .../karaf/{CamelRestletTest.java => CamelRestletJacksonTest.java}   | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)
 copy tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/{CamelRestletTest.java => CamelRestletGsonTest.java} (90%)
 copy tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/{CamelRestletTest.java => CamelRestletJacksonTest.java} (89%)

-- 
To stop receiving notification emails like this one, please contact
['"commits@camel.apache.org" <co...@camel.apache.org>'].

[camel] 02/02: Added a Karaf feature test for camel-restlet-gson

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 2bc791f5fae848164342ec3d0cb385e0259f0e23
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Dec 7 09:32:23 2017 +0100

    Added a Karaf feature test for camel-restlet-gson
---
 .../camel/itest/karaf/CamelRestletGsonTest.java    | 34 ++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelRestletGsonTest.java b/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelRestletGsonTest.java
new file mode 100644
index 0000000..4a5bc40
--- /dev/null
+++ b/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelRestletGsonTest.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 CamelRestletGsonTest extends BaseKarafTest {
+
+    public static final String COMPONENT = extractName(CamelRestletGsonTest.class);
+
+    @Test
+    public void test() throws Exception {
+        installCamelFeature(COMPONENT);
+    }
+
+
+}
\ No newline at end of file

-- 
To stop receiving notification emails like this one, please contact
"commits@camel.apache.org" <co...@camel.apache.org>.

[camel] 01/02: Added a Karaf feature test for camel-restlet-jackson

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit c3bf0f5cc1a048a3e20b477d3bd81e6ab40452ab
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Dec 7 09:30:05 2017 +0100

    Added a Karaf feature test for camel-restlet-jackson
---
 .../camel/itest/karaf/CamelRestletJacksonTest.java | 34 ++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelRestletJacksonTest.java b/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelRestletJacksonTest.java
new file mode 100644
index 0000000..f57d832
--- /dev/null
+++ b/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelRestletJacksonTest.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 CamelRestletJacksonTest extends BaseKarafTest {
+
+    public static final String COMPONENT = extractName(CamelRestletJacksonTest.class);
+
+    @Test
+    public void test() throws Exception {
+        installCamelFeature(COMPONENT);
+    }
+
+
+}
\ No newline at end of file

-- 
To stop receiving notification emails like this one, please contact
"commits@camel.apache.org" <co...@camel.apache.org>.