Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 06BE8200C1A for ; Sun, 29 Jan 2017 17:54:33 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 05792160B47; Sun, 29 Jan 2017 16:54:33 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 4D4A7160B4F for ; Sun, 29 Jan 2017 17:54:32 +0100 (CET) Received: (qmail 25352 invoked by uid 500); 29 Jan 2017 16:54:31 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 25333 invoked by uid 99); 29 Jan 2017 16:54:31 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 29 Jan 2017 16:54:31 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 4BB30DFB0E; Sun, 29 Jan 2017 16:54:31 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: davsclaus@apache.org To: commits@camel.apache.org Date: Sun, 29 Jan 2017 16:54:35 -0000 Message-Id: <81fe50a266574b05bdb77f2eed9c7959@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [5/6] camel git commit: CAMEL-10740: Added karaf itest archived-at: Sun, 29 Jan 2017 16:54:33 -0000 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 Authored: Sun Jan 29 17:47:54 2017 +0100 Committer: Claus Ibsen 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