You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by lu...@apache.org on 2008/12/24 12:56:23 UTC

svn commit: r729302 - /commons/proper/math/trunk/src/test/org/apache/commons/math/stat/descriptive/DescriptiveStatisticsTest.java

Author: luc
Date: Wed Dec 24 03:56:22 2008
New Revision: 729302

URL: http://svn.apache.org/viewvc?rev=729302&view=rev
Log:
removed unused method

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=729302&r1=729301&r2=729302&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 Wed Dec 24 03:56:22 2008
@@ -178,23 +178,4 @@
         }
     }
     
-    private void checkSameResults(DescriptiveStatistics first,
-            DescriptiveStatistics second) throws Exception {
-        assertEquals(first.getGeometricMean(), second.getGeometricMean(), 0);
-        assertEquals(first.getKurtosis(), second.getKurtosis(), 0);
-        assertEquals(first.getMax(), second.getMax(), 0);
-        assertEquals(first.getMean(), second.getMean(), 0);
-        assertEquals(first.getMin(), second.getMin(), 0);
-        assertEquals(first.getN(), second.getN(), 0);
-        assertEquals(first.getPercentile(10), second.getPercentile(10), 0);
-        assertEquals(first.getSkewness(), second.getSkewness(), 0);
-        assertEquals(first.getStandardDeviation(),
-                second.getStandardDeviation(), 0);
-        assertEquals(first.getSum(), second.getSum(), 0);
-        assertEquals(first.getSumsq(), second.getSumsq(), 0);
-        assertEquals(first.getVariance(), second.getVariance(), 0);
-        assertEquals(first.eDA, second.eDA);
-        assertEquals(first.getWindowSize(), second.getWindowSize());
-        
-    }
 }