Return-Path: Delivered-To: apmail-commons-commits-archive@locus.apache.org Received: (qmail 72726 invoked from network); 3 Nov 2007 12:53:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 3 Nov 2007 12:53:44 -0000 Received: (qmail 76710 invoked by uid 500); 3 Nov 2007 12:53:31 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 76682 invoked by uid 500); 3 Nov 2007 12:53:31 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 76673 invoked by uid 99); 3 Nov 2007 12:53:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 03 Nov 2007 05:53:31 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 03 Nov 2007 12:54:03 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 7D61E1A9832; Sat, 3 Nov 2007 05:53:20 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r591610 - /commons/proper/math/trunk/src/test/org/apache/commons/math/stat/descriptive/DescriptiveStatisticsTest.java Date: Sat, 03 Nov 2007 12:53:20 -0000 To: commits@commons.apache.org From: luc@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071103125320.7D61E1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: luc Date: Sat Nov 3 05:53:19 2007 New Revision: 591610 URL: http://svn.apache.org/viewvc?rev=591610&view=rev Log: removed the static suite() method which cannot create a test instance anymore sonce the class is now abstract Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/stat/descriptive/DescriptiveStatisticsTest.java Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/stat/descriptive/DescriptiveStatisticsTest.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/stat/descriptive/DescriptiveStatisticsTest.java?rev=591610&r1=591609&r2=591610&view=diff ============================================================================== --- commons/proper/math/trunk/src/test/org/apache/commons/math/stat/descriptive/DescriptiveStatisticsTest.java (original) +++ commons/proper/math/trunk/src/test/org/apache/commons/math/stat/descriptive/DescriptiveStatisticsTest.java Sat Nov 3 05:53:19 2007 @@ -47,12 +47,6 @@ super(name); } - public static Test suite() { - TestSuite suite = new TestSuite(DescriptiveStatisticsTest.class); - suite.setName("Descriptive Statistics Tests"); - return suite; - } - protected abstract DescriptiveStatistics createDescriptiveStatistics(); public void setUp() {