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 2019/02/07 07:17:17 UTC

[camel] branch master updated: Fixed Camel-Hazelcast Karaf ITest

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


The following commit(s) were added to refs/heads/master by this push:
     new c68c1ac  Fixed Camel-Hazelcast Karaf ITest
c68c1ac is described below

commit c68c1ac65e9d53186394581a7954f27fb9cfd769
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Feb 7 08:16:53 2019 +0100

    Fixed Camel-Hazelcast Karaf ITest
---
 .../org/apache/camel/itest/karaf/CamelHazelcastTest.java   | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelHazelcastTest.java b/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelHazelcastTest.java
index 15bacdc..52e683d 100644
--- a/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelHazelcastTest.java
+++ b/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelHazelcastTest.java
@@ -27,7 +27,17 @@ public class CamelHazelcastTest extends BaseKarafTest {
 
     @Test
     public void test() throws Exception {
-        testComponent(COMPONENT);
+        testComponent(COMPONENT, "hazelcast-atomicvalue");
+        testComponent(COMPONENT, "hazelcast-instance");
+        testComponent(COMPONENT, "hazelcast-list");
+        testComponent(COMPONENT, "hazelcast-map");
+        testComponent(COMPONENT, "hazelcast-multimap");
+        testComponent(COMPONENT, "hazelcast-queue");
+        testComponent(COMPONENT, "hazelcast-replicatedmap");
+        testComponent(COMPONENT, "hazelcast-ringbuffer");
+        testComponent(COMPONENT, "hazelcast-seda");
+        testComponent(COMPONENT, "hazelcast-set");
+        testComponent(COMPONENT, "hazelcast-topic");
     }
 
-}
\ No newline at end of file
+}