Repository: camel
Updated Branches:
  refs/heads/master a23351a8c -> b75c06cdd


CAMEL-9615 camel-itest-karaf - Some failed tests


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

Branch: refs/heads/master
Commit: b75c06cdd7c85b4e0f3d5f9110f3c85eeac4e8fa
Parents: a23351a
Author: Andrea Cosentino <anco...@gmail.com>
Authored: Thu Feb 18 14:58:41 2016 +0100
Committer: Andrea Cosentino <anco...@gmail.com>
Committed: Thu Feb 18 15:00:43 2016 +0100

----------------------------------------------------------------------
 .../test/java/org/apache/camel/itest/karaf/CamelLzfTest.java | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/b75c06cd/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelLzfTest.java
----------------------------------------------------------------------
diff --git 
a/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelLzfTest.java
 
b/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelLzfTest.java
index 3bf0b49..1225ed3 100644
--- 
a/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelLzfTest.java
+++ 
b/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelLzfTest.java
@@ -16,6 +16,8 @@
  */
 package org.apache.camel.itest.karaf;
 
+import org.apache.camel.model.DataFormatDefinition;
+import org.apache.camel.model.dataformat.LZFDataFormat;
 import org.junit.Test;
 import org.junit.runner.RunWith;
 import org.ops4j.pax.exam.Configuration;
@@ -26,10 +28,14 @@ import org.ops4j.pax.exam.junit.PaxExam;
 public class CamelLzfTest extends AbstractFeatureTest {
 
     public static final String COMPONENT = extractName(CamelLzfTest.class);
+    
+    protected DataFormatDefinition createDataformatDefinition(String format) { 
       
+        return new LZFDataFormat();
+    }
 
     @Test
     public void test() throws Exception {
-        testComponent(COMPONENT);
+        testDataFormat(COMPONENT);
     }
 
     @Configuration

Reply via email to