Return-Path: X-Original-To: apmail-flink-dev-archive@www.apache.org Delivered-To: apmail-flink-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9002F187C1 for ; Tue, 2 Jun 2015 15:59:36 +0000 (UTC) Received: (qmail 52810 invoked by uid 500); 2 Jun 2015 15:59:36 -0000 Delivered-To: apmail-flink-dev-archive@flink.apache.org Received: (qmail 52748 invoked by uid 500); 2 Jun 2015 15:59:36 -0000 Mailing-List: contact dev-help@flink.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flink.apache.org Delivered-To: mailing list dev@flink.apache.org Received: (qmail 52737 invoked by uid 99); 2 Jun 2015 15:59:36 -0000 Received: from mail-relay.apache.org (HELO mail-relay.apache.org) (140.211.11.15) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 02 Jun 2015 15:59:36 +0000 Received: from mail-vn0-f41.google.com (mail-vn0-f41.google.com [209.85.216.41]) by mail-relay.apache.org (ASF Mail Server at mail-relay.apache.org) with ESMTPSA id 2BF021A010F for ; Tue, 2 Jun 2015 15:59:36 +0000 (UTC) Received: by vnbg62 with SMTP id g62so21228268vnb.8 for ; Tue, 02 Jun 2015 08:59:35 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.52.53.10 with SMTP id x10mr38420448vdo.36.1433260775356; Tue, 02 Jun 2015 08:59:35 -0700 (PDT) Received: by 10.52.166.161 with HTTP; Tue, 2 Jun 2015 08:59:35 -0700 (PDT) In-Reply-To: References: Date: Tue, 2 Jun 2015 17:59:35 +0200 Message-ID: Subject: Re: Writing test suites From: Aljoscha Krettek To: dev@flink.apache.org Content-Type: text/plain; charset=UTF-8 Hi, the difference is that the IT (Integration Test) suites are only run when "mvn verify" or "mvn install" is executed. The other suites (or tests) are ran when "mvn test" is executed. Typically the non-IT tests are more lightweight while the IT tests can do heavy stuff that takes a bit longer. When the ITCases or ITSuites are executed the normal tests are also executed. Cheers, Aljoscha On Tue, Jun 2, 2015 at 5:50 PM, Sachin Goel wrote: > Hi > What's the convention with using an "ITSuite" in the name instead of just > "Suite"? > > Regards > Sachin Goel