Return-Path: X-Original-To: apmail-ignite-commits-archive@minotaur.apache.org Delivered-To: apmail-ignite-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4C50318078 for ; Sat, 4 Jul 2015 13:08:20 +0000 (UTC) Received: (qmail 91978 invoked by uid 500); 4 Jul 2015 13:08:20 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 91949 invoked by uid 500); 4 Jul 2015 13:08:20 -0000 Mailing-List: contact commits-help@ignite.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.incubator.apache.org Delivered-To: mailing list commits@ignite.incubator.apache.org Received: (qmail 91940 invoked by uid 99); 4 Jul 2015 13:08:20 -0000 Received: from Unknown (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Jul 2015 13:08:20 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id A93A4181A17 for ; Sat, 4 Jul 2015 13:08:19 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 1.771 X-Spam-Level: * X-Spam-Status: No, score=1.771 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, T_RP_MATCHES_RCVD=-0.01, URIBL_BLOCKED=0.001] autolearn=disabled Received: from mx1-us-west.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id H5HozjjNbRrG for ; Sat, 4 Jul 2015 13:08:13 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-us-west.apache.org (ASF Mail Server at mx1-us-west.apache.org) with SMTP id CA4E3295B8 for ; Sat, 4 Jul 2015 13:07:49 +0000 (UTC) Received: (qmail 89680 invoked by uid 99); 4 Jul 2015 13:07:49 -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; Sat, 04 Jul 2015 13:07:49 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 107DEE36AE; Sat, 4 Jul 2015 13:07:49 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sevdokimov@apache.org To: commits@ignite.incubator.apache.org Date: Sat, 04 Jul 2015 13:08:36 -0000 Message-Id: <5e2764e0c7224997ac71ef27d7be9da4@git.apache.org> In-Reply-To: <186a684858d247c6b7104f5b3031ff20@git.apache.org> References: <186a684858d247c6b7104f5b3031ff20@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [49/50] incubator-ignite git commit: Kafka streamer test suite added Kafka streamer test suite added Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/f72b2914 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/f72b2914 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/f72b2914 Branch: refs/heads/ignite-591 Commit: f72b291498d413d870669e8dcd7cc2a5f3b81b51 Parents: b6803e7 Author: agura Authored: Fri Jul 3 21:18:57 2015 +0300 Committer: agura Committed: Fri Jul 3 21:18:57 2015 +0300 ---------------------------------------------------------------------- .../kafka/IgniteKafkaStreamerSelfTestSuite.java | 37 ++++++++++++++++++++ 1 file changed, 37 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/f72b2914/modules/kafka/src/test/java/org/apache/ignite/stream/kafka/IgniteKafkaStreamerSelfTestSuite.java ---------------------------------------------------------------------- diff --git a/modules/kafka/src/test/java/org/apache/ignite/stream/kafka/IgniteKafkaStreamerSelfTestSuite.java b/modules/kafka/src/test/java/org/apache/ignite/stream/kafka/IgniteKafkaStreamerSelfTestSuite.java new file mode 100644 index 0000000..a2dfd17 --- /dev/null +++ b/modules/kafka/src/test/java/org/apache/ignite/stream/kafka/IgniteKafkaStreamerSelfTestSuite.java @@ -0,0 +1,37 @@ +/* + * 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.ignite.stream.kafka; + +import junit.framework.*; + +/** + * Apache Kafka streamer tests. + */ +public class IgniteKafkaStreamerSelfTestSuite extends TestSuite { + /** + * @return Test suite. + * @throws Exception Thrown in case of the failure. + */ + public static TestSuite suite() throws Exception { + TestSuite suite = new TestSuite("Apache Kafka streamer Test Suite"); + + suite.addTest(new TestSuite(KafkaIgniteStreamerSelfTest.class)); + + return suite; + } +}