Changed test class names to match implementation classes.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@141299 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
49a083af12
commit
1363c7d014
|
@ -25,10 +25,10 @@ import org.apache.commons.math.random.RandomDataImpl;
|
|||
/**
|
||||
* Test cases for the {@link Univariate} class.
|
||||
*
|
||||
* @version $Revision: 1.2 $ $Date: 2004/05/23 00:56:15 $
|
||||
* @version $Revision: 1.1 $ $Date: 2004/06/16 03:36:12 $
|
||||
*/
|
||||
|
||||
public final class StoreUnivariateImplTest extends TestCase {
|
||||
public final class DescriptiveStatisticsImplTest extends TestCase {
|
||||
private double one = 1;
|
||||
private float two = 2;
|
||||
private int three = 3;
|
||||
|
@ -44,7 +44,7 @@ public final class StoreUnivariateImplTest extends TestCase {
|
|||
private double kurtosis = 0.5;
|
||||
private double tolerance = 10E-15;
|
||||
|
||||
public StoreUnivariateImplTest(String name) {
|
||||
public DescriptiveStatisticsImplTest(String name) {
|
||||
super(name);
|
||||
}
|
||||
|
||||
|
@ -52,8 +52,8 @@ public final class StoreUnivariateImplTest extends TestCase {
|
|||
}
|
||||
|
||||
public static Test suite() {
|
||||
TestSuite suite = new TestSuite(StoreUnivariateImplTest.class);
|
||||
suite.setName("Frequency Tests");
|
||||
TestSuite suite = new TestSuite(DescriptiveStatisticsImplTest.class);
|
||||
suite.setName("DescriptiveStatistics Tests");
|
||||
return suite;
|
||||
}
|
||||
|
|
@ -24,10 +24,10 @@ import org.apache.commons.math.TestUtils;
|
|||
/**
|
||||
* Test cases for the {@link DescriptiveStatistics} class.
|
||||
*
|
||||
* @version $Revision: 1.5 $ $Date: 2004/05/18 04:21:28 $
|
||||
* @version $Revision: 1.1 $ $Date: 2004/06/16 03:36:12 $
|
||||
*/
|
||||
|
||||
public final class UnivariateImplTest extends TestCase {
|
||||
public final class SummaryStatisticsImplTest extends TestCase {
|
||||
private double one = 1;
|
||||
private float twoF = 2;
|
||||
private long twoL = 2;
|
||||
|
@ -44,7 +44,7 @@ public final class UnivariateImplTest extends TestCase {
|
|||
|
||||
protected SummaryStatistics u = null;
|
||||
|
||||
public UnivariateImplTest(String name) {
|
||||
public SummaryStatisticsImplTest(String name) {
|
||||
super(name);
|
||||
}
|
||||
|
||||
|
@ -53,7 +53,7 @@ public final class UnivariateImplTest extends TestCase {
|
|||
}
|
||||
|
||||
public static Test suite() {
|
||||
TestSuite suite = new TestSuite(UnivariateImplTest.class);
|
||||
TestSuite suite = new TestSuite(SummaryStatisticsImplTest.class);
|
||||
suite.setName("Frequency Tests");
|
||||
return suite;
|
||||
}
|
Loading…
Reference in New Issue