Fixed forgotten test update.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1604626 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
afff37e03b
commit
e31a222cef
|
@ -660,17 +660,14 @@ public class PercentileTest extends UnivariateStatisticAbstractTest{
|
||||||
Assert.assertEquals("Type:"+t,0d, t.index(pMin, N),0d);
|
Assert.assertEquals("Type:"+t,0d, t.index(pMin, N),0d);
|
||||||
Assert.assertEquals("Type:"+t,N, t.index(pMax, N),0.5d);
|
Assert.assertEquals("Type:"+t,N, t.index(pMax, N),0.5d);
|
||||||
pMin=pMin==0d?pMin+0.01:pMin;
|
pMin=pMin==0d?pMin+0.01:pMin;
|
||||||
testAssertMappedValues(testArray, new Object[][] { { t, min }}
|
testAssertMappedValues(testArray, new Object[][] { { t, min }}, pMin, 0.01);
|
||||||
,pMin, 0.01);
|
testAssertMappedValues(testArray, new Object[][] { { t, max }}, pMax * 100, tolerance);
|
||||||
|
|
||||||
testAssertMappedValues(testArray, new Object[][] { { t, max }}
|
|
||||||
,pMax*100, tolerance);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testAllEstimationTechniquesOnly() {
|
public void testAllEstimationTechniquesOnly() {
|
||||||
Assert.assertEquals("Commons Math",Percentile.EstimationType.LEGACY.getName());
|
Assert.assertEquals("Legacy Apache Commons Math",Percentile.EstimationType.LEGACY.getName());
|
||||||
Object[][] map =
|
Object[][] map =
|
||||||
new Object[][] { { Percentile.EstimationType.LEGACY, 20.82 }, { Percentile.EstimationType.R_1, 19.8 },
|
new Object[][] { { Percentile.EstimationType.LEGACY, 20.82 }, { Percentile.EstimationType.R_1, 19.8 },
|
||||||
{ Percentile.EstimationType.R_2, 19.8 }, { Percentile.EstimationType.R_3, 19.8 }, { Percentile.EstimationType.R_4, 19.310 },
|
{ Percentile.EstimationType.R_2, 19.8 }, { Percentile.EstimationType.R_3, 19.8 }, { Percentile.EstimationType.R_4, 19.310 },
|
||||||
|
@ -699,7 +696,7 @@ public class PercentileTest extends UnivariateStatisticAbstractTest{
|
||||||
@Test
|
@Test
|
||||||
public void testAllEstimationTechniquesOnlyForAllPivotingStrategies() {
|
public void testAllEstimationTechniquesOnlyForAllPivotingStrategies() {
|
||||||
|
|
||||||
Assert.assertEquals("Commons Math",Percentile.EstimationType.LEGACY.getName());
|
Assert.assertEquals("Legacy Apache Commons Math",Percentile.EstimationType.LEGACY.getName());
|
||||||
|
|
||||||
for (Percentile.PivotingStrategy strategy : Percentile.PivotingStrategy.values()) {
|
for (Percentile.PivotingStrategy strategy : Percentile.PivotingStrategy.values()) {
|
||||||
pivotingStrategy = strategy;
|
pivotingStrategy = strategy;
|
||||||
|
|
Loading…
Reference in New Issue