removed the static suite() method which cannot create a test instance anymore

sonce the class is now abstract

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@591610 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2007-11-03 12:53:19 +00:00
parent c84d037e93
commit c8910463e7
1 changed files with 0 additions and 6 deletions

View File

@ -47,12 +47,6 @@ public abstract class DescriptiveStatisticsTest extends TestCase {
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() {