You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2009/12/09 03:34:12 UTC

svn commit: r888683 - in /commons/proper/math/trunk/src/test/java/org/apache/commons/math: linear/ ode/sampling/ random/ stat/inference/

Author: sebb
Date: Wed Dec  9 02:34:11 2009
New Revision: 888683

URL: http://svn.apache.org/viewvc?rev=888683&view=rev
Log:
Tab police

Modified:
    commons/proper/math/trunk/src/test/java/org/apache/commons/math/linear/BlockFieldMatrixTest.java
    commons/proper/math/trunk/src/test/java/org/apache/commons/math/linear/BlockRealMatrixTest.java
    commons/proper/math/trunk/src/test/java/org/apache/commons/math/linear/EigenDecompositionImplTest.java
    commons/proper/math/trunk/src/test/java/org/apache/commons/math/linear/FieldMatrixImplTest.java
    commons/proper/math/trunk/src/test/java/org/apache/commons/math/ode/sampling/DummyStepInterpolatorTest.java
    commons/proper/math/trunk/src/test/java/org/apache/commons/math/random/RandomDataTest.java
    commons/proper/math/trunk/src/test/java/org/apache/commons/math/stat/inference/ChiSquareFactoryTest.java
    commons/proper/math/trunk/src/test/java/org/apache/commons/math/stat/inference/TTestFactoryTest.java

Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math/linear/BlockFieldMatrixTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math/linear/BlockFieldMatrixTest.java?rev=888683&r1=888682&r2=888683&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/java/org/apache/commons/math/linear/BlockFieldMatrixTest.java (original)
+++ commons/proper/math/trunk/src/test/java/org/apache/commons/math/linear/BlockFieldMatrixTest.java Wed Dec  9 02:34:11 2009
@@ -589,7 +589,7 @@
             if (reference != null) {
                 assertEquals(new BlockFieldMatrix<Fraction>(reference), sub);
             } else {
-            	fail("Expecting MatrixIndexException");
+                fail("Expecting MatrixIndexException");
             }
         } catch (MatrixIndexException e) {
             if (reference != null) {
@@ -647,9 +647,9 @@
                              new Fraction[reference.length][reference[0].length];
             m.copySubMatrix(startRow, endRow, startColumn, endColumn, sub);
             if (reference != null) {
-            	assertEquals(new BlockFieldMatrix<Fraction>(reference), new BlockFieldMatrix<Fraction>(sub));
+                assertEquals(new BlockFieldMatrix<Fraction>(reference), new BlockFieldMatrix<Fraction>(sub));
             } else {
-            	fail("Expecting MatrixIndexException");
+                fail("Expecting MatrixIndexException");
             }
         } catch (MatrixIndexException e) {
             if (reference != null) {
@@ -666,9 +666,9 @@
                     new Fraction[reference.length][reference[0].length];
             m.copySubMatrix(selectedRows, selectedColumns, sub);
             if (reference != null) {
-            	assertEquals(new BlockFieldMatrix<Fraction>(reference), new BlockFieldMatrix<Fraction>(sub));
+                assertEquals(new BlockFieldMatrix<Fraction>(reference), new BlockFieldMatrix<Fraction>(sub));
             } else {
-            	fail("Expecting MatrixIndexException");
+                fail("Expecting MatrixIndexException");
             }
         } catch (MatrixIndexException e) {
             if (reference != null) {

Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math/linear/BlockRealMatrixTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math/linear/BlockRealMatrixTest.java?rev=888683&r1=888682&r2=888683&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/java/org/apache/commons/math/linear/BlockRealMatrixTest.java (original)
+++ commons/proper/math/trunk/src/test/java/org/apache/commons/math/linear/BlockRealMatrixTest.java Wed Dec  9 02:34:11 2009
@@ -498,9 +498,9 @@
         try {
             RealMatrix sub = m.getSubMatrix(startRow, endRow, startColumn, endColumn);
             if (reference != null) {
-            	 assertEquals(new BlockRealMatrix(reference), sub);
+                assertEquals(new BlockRealMatrix(reference), sub);
             } else {
-            	fail("Expecting MatrixIndexException");
+                fail("Expecting MatrixIndexException");
             }
         } catch (MatrixIndexException e) {
             if (reference != null) {
@@ -514,9 +514,9 @@
         try {
             RealMatrix sub = m.getSubMatrix(selectedRows, selectedColumns);
             if (reference != null) {
-            	assertEquals(new BlockRealMatrix(reference), sub);
+                assertEquals(new BlockRealMatrix(reference), sub);
             } else {
-            	fail("Expecting MatrixIndexException");
+                fail("Expecting MatrixIndexException");
             }
         } catch (MatrixIndexException e) {
             if (reference != null) {
@@ -572,9 +572,9 @@
                              new double[reference.length][reference[0].length];
             m.copySubMatrix(startRow, endRow, startColumn, endColumn, sub);
             if (reference != null) {
-            	assertEquals(new BlockRealMatrix(reference), new BlockRealMatrix(sub));
+                assertEquals(new BlockRealMatrix(reference), new BlockRealMatrix(sub));
             } else {
-            	fail("Expecting MatrixIndexException");
+                fail("Expecting MatrixIndexException");
             }
         } catch (MatrixIndexException e) {
             if (reference != null) {
@@ -591,9 +591,9 @@
                     new double[reference.length][reference[0].length];
             m.copySubMatrix(selectedRows, selectedColumns, sub);
             if (reference != null) {
-            	assertEquals(new BlockRealMatrix(reference), new BlockRealMatrix(sub));
+                assertEquals(new BlockRealMatrix(reference), new BlockRealMatrix(sub));
             } else {
-            	fail("Expecting MatrixIndexException");
+                fail("Expecting MatrixIndexException");
             }
         } catch (MatrixIndexException e) {
             if (reference != null) {

Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math/linear/EigenDecompositionImplTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math/linear/EigenDecompositionImplTest.java?rev=888683&r1=888682&r2=888683&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/java/org/apache/commons/math/linear/EigenDecompositionImplTest.java (original)
+++ commons/proper/math/trunk/src/test/java/org/apache/commons/math/linear/EigenDecompositionImplTest.java Wed Dec  9 02:34:11 2009
@@ -145,31 +145,31 @@
     public void testMathpbx02() {
 
         double[] mainTridiagonal = {
-        	  7484.860960227216, 18405.28129035345, 13855.225609560746,
-        	 10016.708722343366, 559.8117399576674, 6750.190788301587, 
-        	    71.21428769782159
+              7484.860960227216, 18405.28129035345, 13855.225609560746,
+             10016.708722343366, 559.8117399576674, 6750.190788301587, 
+                71.21428769782159
         };
         double[] secondaryTridiagonal = {
-        	 -4175.088570476366,1975.7955858241994,5193.178422374075, 
-        	  1995.286659169179,75.34535882933804,-234.0808002076056
+             -4175.088570476366,1975.7955858241994,5193.178422374075, 
+              1995.286659169179,75.34535882933804,-234.0808002076056
         };
 
         // the reference values have been computed using routine DSTEMR
         // from the fortran library LAPACK version 3.2.1
         double[] refEigenValues = {
-        		20654.744890306974412,16828.208208485466457,
-        		6893.155912634994820,6757.083016675340332,
-        		5887.799885688558788,64.309089923240379,
-        		57.992628792736340
+                20654.744890306974412,16828.208208485466457,
+                6893.155912634994820,6757.083016675340332,
+                5887.799885688558788,64.309089923240379,
+                57.992628792736340
         };
         RealVector[] refEigenVectors = {
-        		new ArrayRealVector(new double[] {-0.270356342026904, 0.852811091326997, 0.399639490702077, 0.198794657813990, 0.019739323307666, 0.000106983022327, -0.000001216636321}),
-        		new ArrayRealVector(new double[] {0.179995273578326,-0.402807848153042,0.701870993525734,0.555058211014888,0.068079148898236,0.000509139115227,-0.000007112235617}),
-        		new ArrayRealVector(new double[] {-0.399582721284727,-0.056629954519333,-0.514406488522827,0.711168164518580,0.225548081276367,0.125943999652923,-0.004321507456014}),
-        		new ArrayRealVector(new double[] {0.058515721572821,0.010200130057739,0.063516274916536,-0.090696087449378,-0.017148420432597,0.991318870265707,-0.034707338554096}),
-        		new ArrayRealVector(new double[] {0.855205995537564,0.327134656629775,-0.265382397060548,0.282690729026706,0.105736068025572,-0.009138126622039,0.000367751821196}),
-        		new ArrayRealVector(new double[] {-0.002913069901144,-0.005177515777101,0.041906334478672,-0.109315918416258,0.436192305456741,0.026307315639535,0.891797507436344}),
-        		new ArrayRealVector(new double[] {-0.005738311176435,-0.010207611670378,0.082662420517928,-0.215733886094368,0.861606487840411,-0.025478530652759,-0.451080697503958})
+                new ArrayRealVector(new double[] {-0.270356342026904, 0.852811091326997, 0.399639490702077, 0.198794657813990, 0.019739323307666, 0.000106983022327, -0.000001216636321}),
+                new ArrayRealVector(new double[] {0.179995273578326,-0.402807848153042,0.701870993525734,0.555058211014888,0.068079148898236,0.000509139115227,-0.000007112235617}),
+                new ArrayRealVector(new double[] {-0.399582721284727,-0.056629954519333,-0.514406488522827,0.711168164518580,0.225548081276367,0.125943999652923,-0.004321507456014}),
+                new ArrayRealVector(new double[] {0.058515721572821,0.010200130057739,0.063516274916536,-0.090696087449378,-0.017148420432597,0.991318870265707,-0.034707338554096}),
+                new ArrayRealVector(new double[] {0.855205995537564,0.327134656629775,-0.265382397060548,0.282690729026706,0.105736068025572,-0.009138126622039,0.000367751821196}),
+                new ArrayRealVector(new double[] {-0.002913069901144,-0.005177515777101,0.041906334478672,-0.109315918416258,0.436192305456741,0.026307315639535,0.891797507436344}),
+                new ArrayRealVector(new double[] {-0.005738311176435,-0.010207611670378,0.082662420517928,-0.215733886094368,0.861606487840411,-0.025478530652759,-0.451080697503958})
         };
 
         // the following line triggers the exception

Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math/linear/FieldMatrixImplTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math/linear/FieldMatrixImplTest.java?rev=888683&r1=888682&r2=888683&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/java/org/apache/commons/math/linear/FieldMatrixImplTest.java (original)
+++ commons/proper/math/trunk/src/test/java/org/apache/commons/math/linear/FieldMatrixImplTest.java Wed Dec  9 02:34:11 2009
@@ -385,9 +385,9 @@
         try {
             FieldMatrix<Fraction> sub = m.getSubMatrix(startRow, endRow, startColumn, endColumn);
             if (reference != null) {
-            	assertEquals(new Array2DRowFieldMatrix<Fraction>(reference), sub);
+                assertEquals(new Array2DRowFieldMatrix<Fraction>(reference), sub);
             } else {
-            	fail("Expecting MatrixIndexException");
+                fail("Expecting MatrixIndexException");
             }
         } catch (MatrixIndexException e) {
             if (reference != null) {
@@ -401,9 +401,9 @@
         try {
             FieldMatrix<Fraction> sub = m.getSubMatrix(selectedRows, selectedColumns);
             if (reference != null) {
-            	assertEquals(new Array2DRowFieldMatrix<Fraction>(reference), sub);
+                assertEquals(new Array2DRowFieldMatrix<Fraction>(reference), sub);
             } else {
-            	fail("Expecting MatrixIndexException");
+                fail("Expecting MatrixIndexException");
             }
         } catch (MatrixIndexException e) {
             if (reference != null) {
@@ -440,9 +440,9 @@
                              new Fraction[reference.length][reference[0].length];
             m.copySubMatrix(startRow, endRow, startColumn, endColumn, sub);
             if (reference != null) {
-            	assertEquals(new Array2DRowFieldMatrix<Fraction>(reference), new Array2DRowFieldMatrix<Fraction>(sub));
+                assertEquals(new Array2DRowFieldMatrix<Fraction>(reference), new Array2DRowFieldMatrix<Fraction>(sub));
             } else {
-            	fail("Expecting MatrixIndexException");
+                fail("Expecting MatrixIndexException");
             }
         } catch (MatrixIndexException e) {
             if (reference != null) {
@@ -459,9 +459,9 @@
                     new Fraction[reference.length][reference[0].length];
             m.copySubMatrix(selectedRows, selectedColumns, sub);
             if (reference != null) {
-            	assertEquals(new Array2DRowFieldMatrix<Fraction>(reference), new Array2DRowFieldMatrix<Fraction>(sub));
+                assertEquals(new Array2DRowFieldMatrix<Fraction>(reference), new Array2DRowFieldMatrix<Fraction>(sub));
             } else {
-            	fail("Expecting MatrixIndexException");
+                fail("Expecting MatrixIndexException");
             }
         } catch (MatrixIndexException e) {
             if (reference != null) {

Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math/ode/sampling/DummyStepInterpolatorTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math/ode/sampling/DummyStepInterpolatorTest.java?rev=888683&r1=888682&r2=888683&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/java/org/apache/commons/math/ode/sampling/DummyStepInterpolatorTest.java (original)
+++ commons/proper/math/trunk/src/test/java/org/apache/commons/math/ode/sampling/DummyStepInterpolatorTest.java Wed Dec  9 02:34:11 2009
@@ -128,15 +128,15 @@
   }
 
   private static class BadStepInterpolator extends DummyStepInterpolator {
-	  @SuppressWarnings("unused")
-	  public BadStepInterpolator() {
-	  }
-	  public BadStepInterpolator(double[] y, boolean forward) {
-		  super(y, forward);
-	  }
-	  @Override
-	  protected void doFinalize()
-	  throws DerivativeException {
+      @SuppressWarnings("unused")
+      public BadStepInterpolator() {
+      }
+      public BadStepInterpolator(double[] y, boolean forward) {
+          super(y, forward);
+      }
+      @Override
+      protected void doFinalize()
+      throws DerivativeException {
           throw new DerivativeException(null);
       }
   }

Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math/random/RandomDataTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math/random/RandomDataTest.java?rev=888683&r1=888682&r2=888683&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/java/org/apache/commons/math/random/RandomDataTest.java (original)
+++ commons/proper/math/trunk/src/test/java/org/apache/commons/math/random/RandomDataTest.java Wed Dec  9 02:34:11 2009
@@ -42,744 +42,744 @@
 
 public class RandomDataTest extends RetryTestCase {
 
-	public RandomDataTest(String name) {
-		super(name);
-		randomData = new RandomDataImpl();
-	}
-
-	protected long smallSampleSize = 1000;
-	protected double[] expected = { 250, 250, 250, 250 };
-	protected int largeSampleSize = 10000;
-	private String[] hex = { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9",
-			"a", "b", "c", "d", "e", "f" };
-	protected RandomDataImpl randomData = null;
-	protected ChiSquareTestImpl testStatistic = new ChiSquareTestImpl();
-
-	public static Test suite() {
-		TestSuite suite = new TestSuite(RandomDataTest.class);
-		suite.setName("RandomData Tests");
-		return suite;
-	}
-
-	public void testNextIntExtremeValues() {
-		int x = randomData.nextInt(Integer.MIN_VALUE, Integer.MAX_VALUE);
-		int y = randomData.nextInt(Integer.MIN_VALUE, Integer.MAX_VALUE);
-		assertFalse(x == y);
-	}
-
-	public void testNextLongExtremeValues() {
-		long x = randomData.nextLong(Long.MIN_VALUE, Long.MAX_VALUE);
-		long y = randomData.nextLong(Long.MIN_VALUE, Long.MAX_VALUE);
-		assertFalse(x == y);
-	}
-
-	/** test dispersion and failure modes for nextInt() */
-	public void testNextInt() {
-		try {
-			randomData.nextInt(4, 3);
-			fail("IllegalArgumentException expected");
-		} catch (IllegalArgumentException ex) {
-			// ignored
-		}
-		Frequency freq = new Frequency();
-		int value = 0;
-		for (int i = 0; i < smallSampleSize; i++) {
-			value = randomData.nextInt(0, 3);
-			assertTrue("nextInt range", (value >= 0) && (value <= 3));
-			freq.addValue(value);
-		}
-		long[] observed = new long[4];
-		for (int i = 0; i < 4; i++) {
-			observed[i] = freq.getCount(i);
-		}
-
-		/*
-		 * Use ChiSquare dist with df = 4-1 = 3, alpha = .001 Change to 11.34
-		 * for alpha = .01
-		 */
-		assertTrue("chi-square test -- will fail about 1 in 1000 times",
-				testStatistic.chiSquare(expected, observed) < 16.27);
-	}
-
-	/** test dispersion and failure modes for nextLong() */
-	public void testNextLong() {
-		try {
-			randomData.nextLong(4, 3);
-			fail("IllegalArgumentException expected");
-		} catch (IllegalArgumentException ex) {
-			// ignored
-		}
-		Frequency freq = new Frequency();
-		long value = 0;
-		for (int i = 0; i < smallSampleSize; i++) {
-			value = randomData.nextLong(0, 3);
-			assertTrue("nextInt range", (value >= 0) && (value <= 3));
-			freq.addValue(value);
-		}
-		long[] observed = new long[4];
-		for (int i = 0; i < 4; i++) {
-			observed[i] = freq.getCount(i);
-		}
-
-		/*
-		 * Use ChiSquare dist with df = 4-1 = 3, alpha = .001 Change to 11.34
-		 * for alpha = .01
-		 */
-		assertTrue("chi-square test -- will fail about 1 in 1000 times",
-				testStatistic.chiSquare(expected, observed) < 16.27);
-	}
-
-	/** test dispersion and failure modes for nextSecureLong() */
-	public void testNextSecureLong() {
-		try {
-			randomData.nextSecureLong(4, 3);
-			fail("IllegalArgumentException expected");
-		} catch (IllegalArgumentException ex) {
-			// ignored
-		}
-		Frequency freq = new Frequency();
-		long value = 0;
-		for (int i = 0; i < smallSampleSize; i++) {
-			value = randomData.nextSecureLong(0, 3);
-			assertTrue("nextInt range", (value >= 0) && (value <= 3));
-			freq.addValue(value);
-		}
-		long[] observed = new long[4];
-		for (int i = 0; i < 4; i++) {
-			observed[i] = freq.getCount(i);
-		}
-
-		/*
-		 * Use ChiSquare dist with df = 4-1 = 3, alpha = .001 Change to 11.34
-		 * for alpha = .01
-		 */
-		assertTrue("chi-square test -- will fail about 1 in 1000 times",
-				testStatistic.chiSquare(expected, observed) < 16.27);
-	}
-
-	/** test dispersion and failure modes for nextSecureInt() */
-	public void testNextSecureInt() {
-		try {
-			randomData.nextSecureInt(4, 3);
-			fail("IllegalArgumentException expected");
-		} catch (IllegalArgumentException ex) {
-			// ignored
-		}
-		Frequency freq = new Frequency();
-		int value = 0;
-		for (int i = 0; i < smallSampleSize; i++) {
-			value = randomData.nextSecureInt(0, 3);
-			assertTrue("nextInt range", (value >= 0) && (value <= 3));
-			freq.addValue(value);
-		}
-		long[] observed = new long[4];
-		for (int i = 0; i < 4; i++) {
-			observed[i] = freq.getCount(i);
-		}
-
-		/*
-		 * Use ChiSquare dist with df = 4-1 = 3, alpha = .001 Change to 11.34
-		 * for alpha = .01
-		 */
-		assertTrue("chi-square test -- will fail about 1 in 1000 times",
-				testStatistic.chiSquare(expected, observed) < 16.27);
-	}
-
-	/**
-	 * Make sure that empirical distribution of random Poisson(4)'s has P(X <=
-	 * 5) close to actual cumulative Poisson probablity and that nextPoisson
-	 * fails when mean is non-positive TODO: replace with statistical test,
-	 * adding test stat to TestStatistic
-	 */
-	public void testNextPoisson() {
-		try {
-			randomData.nextPoisson(0);
-			fail("zero mean -- expecting IllegalArgumentException");
-		} catch (IllegalArgumentException ex) {
-			// ignored
-		}
-		Frequency f = new Frequency();
-		for (int i = 0; i < largeSampleSize; i++) {
-			try {
-				f.addValue(randomData.nextPoisson(4.0d));
-			} catch (Exception ex) {
-				fail(ex.getMessage());
-			}
-		}
-		long cumFreq = f.getCount(0) + f.getCount(1) + f.getCount(2)
-				+ f.getCount(3) + f.getCount(4) + f.getCount(5);
-		long sumFreq = f.getSumFreq();
-		double cumPct = Double.valueOf(cumFreq).doubleValue()
-				/ Double.valueOf(sumFreq).doubleValue();
-		assertEquals("cum Poisson(4)", cumPct, 0.7851, 0.2);
-		try {
-			randomData.nextPoisson(-1);
-			fail("negative mean supplied -- IllegalArgumentException expected");
-		} catch (IllegalArgumentException ex) {
-			// ignored
-		}
-		try {
-			randomData.nextPoisson(0);
-			fail("0 mean supplied -- IllegalArgumentException expected");
-		} catch (IllegalArgumentException ex) {
-			// ignored
-		}
-
-	}
-	
-	public void testNextPoissonConsistency() throws Exception {
-	    // Small integral means
-	    for (int i = 1; i < 100; i++) {
-	        checkNextPoissonConsistency(i);
-	    }
-	    // non-integer means
-	    RandomData randomData = new RandomDataImpl();
-	    for (int i = 1; i < 10; i++) {
-	        checkNextPoissonConsistency(randomData.nextUniform(1, 1000));
-	    }
-	    // large means 
-	    // TODO: When MATH-282 is resolved, s/3000/10000 below
-	    for (int i = 1; i < 10; i++) {
+    public RandomDataTest(String name) {
+        super(name);
+        randomData = new RandomDataImpl();
+    }
+
+    protected long smallSampleSize = 1000;
+    protected double[] expected = { 250, 250, 250, 250 };
+    protected int largeSampleSize = 10000;
+    private String[] hex = { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9",
+            "a", "b", "c", "d", "e", "f" };
+    protected RandomDataImpl randomData = null;
+    protected ChiSquareTestImpl testStatistic = new ChiSquareTestImpl();
+
+    public static Test suite() {
+        TestSuite suite = new TestSuite(RandomDataTest.class);
+        suite.setName("RandomData Tests");
+        return suite;
+    }
+
+    public void testNextIntExtremeValues() {
+        int x = randomData.nextInt(Integer.MIN_VALUE, Integer.MAX_VALUE);
+        int y = randomData.nextInt(Integer.MIN_VALUE, Integer.MAX_VALUE);
+        assertFalse(x == y);
+    }
+
+    public void testNextLongExtremeValues() {
+        long x = randomData.nextLong(Long.MIN_VALUE, Long.MAX_VALUE);
+        long y = randomData.nextLong(Long.MIN_VALUE, Long.MAX_VALUE);
+        assertFalse(x == y);
+    }
+
+    /** test dispersion and failure modes for nextInt() */
+    public void testNextInt() {
+        try {
+            randomData.nextInt(4, 3);
+            fail("IllegalArgumentException expected");
+        } catch (IllegalArgumentException ex) {
+            // ignored
+        }
+        Frequency freq = new Frequency();
+        int value = 0;
+        for (int i = 0; i < smallSampleSize; i++) {
+            value = randomData.nextInt(0, 3);
+            assertTrue("nextInt range", (value >= 0) && (value <= 3));
+            freq.addValue(value);
+        }
+        long[] observed = new long[4];
+        for (int i = 0; i < 4; i++) {
+            observed[i] = freq.getCount(i);
+        }
+
+        /*
+         * Use ChiSquare dist with df = 4-1 = 3, alpha = .001 Change to 11.34
+         * for alpha = .01
+         */
+        assertTrue("chi-square test -- will fail about 1 in 1000 times",
+                testStatistic.chiSquare(expected, observed) < 16.27);
+    }
+
+    /** test dispersion and failure modes for nextLong() */
+    public void testNextLong() {
+        try {
+            randomData.nextLong(4, 3);
+            fail("IllegalArgumentException expected");
+        } catch (IllegalArgumentException ex) {
+            // ignored
+        }
+        Frequency freq = new Frequency();
+        long value = 0;
+        for (int i = 0; i < smallSampleSize; i++) {
+            value = randomData.nextLong(0, 3);
+            assertTrue("nextInt range", (value >= 0) && (value <= 3));
+            freq.addValue(value);
+        }
+        long[] observed = new long[4];
+        for (int i = 0; i < 4; i++) {
+            observed[i] = freq.getCount(i);
+        }
+
+        /*
+         * Use ChiSquare dist with df = 4-1 = 3, alpha = .001 Change to 11.34
+         * for alpha = .01
+         */
+        assertTrue("chi-square test -- will fail about 1 in 1000 times",
+                testStatistic.chiSquare(expected, observed) < 16.27);
+    }
+
+    /** test dispersion and failure modes for nextSecureLong() */
+    public void testNextSecureLong() {
+        try {
+            randomData.nextSecureLong(4, 3);
+            fail("IllegalArgumentException expected");
+        } catch (IllegalArgumentException ex) {
+            // ignored
+        }
+        Frequency freq = new Frequency();
+        long value = 0;
+        for (int i = 0; i < smallSampleSize; i++) {
+            value = randomData.nextSecureLong(0, 3);
+            assertTrue("nextInt range", (value >= 0) && (value <= 3));
+            freq.addValue(value);
+        }
+        long[] observed = new long[4];
+        for (int i = 0; i < 4; i++) {
+            observed[i] = freq.getCount(i);
+        }
+
+        /*
+         * Use ChiSquare dist with df = 4-1 = 3, alpha = .001 Change to 11.34
+         * for alpha = .01
+         */
+        assertTrue("chi-square test -- will fail about 1 in 1000 times",
+                testStatistic.chiSquare(expected, observed) < 16.27);
+    }
+
+    /** test dispersion and failure modes for nextSecureInt() */
+    public void testNextSecureInt() {
+        try {
+            randomData.nextSecureInt(4, 3);
+            fail("IllegalArgumentException expected");
+        } catch (IllegalArgumentException ex) {
+            // ignored
+        }
+        Frequency freq = new Frequency();
+        int value = 0;
+        for (int i = 0; i < smallSampleSize; i++) {
+            value = randomData.nextSecureInt(0, 3);
+            assertTrue("nextInt range", (value >= 0) && (value <= 3));
+            freq.addValue(value);
+        }
+        long[] observed = new long[4];
+        for (int i = 0; i < 4; i++) {
+            observed[i] = freq.getCount(i);
+        }
+
+        /*
+         * Use ChiSquare dist with df = 4-1 = 3, alpha = .001 Change to 11.34
+         * for alpha = .01
+         */
+        assertTrue("chi-square test -- will fail about 1 in 1000 times",
+                testStatistic.chiSquare(expected, observed) < 16.27);
+    }
+
+    /**
+     * Make sure that empirical distribution of random Poisson(4)'s has P(X <=
+     * 5) close to actual cumulative Poisson probablity and that nextPoisson
+     * fails when mean is non-positive TODO: replace with statistical test,
+     * adding test stat to TestStatistic
+     */
+    public void testNextPoisson() {
+        try {
+            randomData.nextPoisson(0);
+            fail("zero mean -- expecting IllegalArgumentException");
+        } catch (IllegalArgumentException ex) {
+            // ignored
+        }
+        Frequency f = new Frequency();
+        for (int i = 0; i < largeSampleSize; i++) {
+            try {
+                f.addValue(randomData.nextPoisson(4.0d));
+            } catch (Exception ex) {
+                fail(ex.getMessage());
+            }
+        }
+        long cumFreq = f.getCount(0) + f.getCount(1) + f.getCount(2)
+                + f.getCount(3) + f.getCount(4) + f.getCount(5);
+        long sumFreq = f.getSumFreq();
+        double cumPct = Double.valueOf(cumFreq).doubleValue()
+                / Double.valueOf(sumFreq).doubleValue();
+        assertEquals("cum Poisson(4)", cumPct, 0.7851, 0.2);
+        try {
+            randomData.nextPoisson(-1);
+            fail("negative mean supplied -- IllegalArgumentException expected");
+        } catch (IllegalArgumentException ex) {
+            // ignored
+        }
+        try {
+            randomData.nextPoisson(0);
+            fail("0 mean supplied -- IllegalArgumentException expected");
+        } catch (IllegalArgumentException ex) {
+            // ignored
+        }
+
+    }
+    
+    public void testNextPoissonConsistency() throws Exception {
+        // Small integral means
+        for (int i = 1; i < 100; i++) {
+            checkNextPoissonConsistency(i);
+        }
+        // non-integer means
+        RandomData randomData = new RandomDataImpl();
+        for (int i = 1; i < 10; i++) {
+            checkNextPoissonConsistency(randomData.nextUniform(1, 1000));
+        }
+        // large means 
+        // TODO: When MATH-282 is resolved, s/3000/10000 below
+        for (int i = 1; i < 10; i++) {
             checkNextPoissonConsistency(randomData.nextUniform(1000, 3000));
         }
-	}
-	
-	/** 
-	 * Verifies that nextPoisson(mean) generates an empirical distribution of values
-	 * consistent with PoissonDistributionImpl by generating 1000 values, computing a
-	 * grouped frequency distribution of the observed values and comparing this distribution
-	 * to the corresponding expected distribution computed using PoissonDistributionImpl.
-	 * Uses ChiSquare test of goodness of fit to evaluate the null hypothesis that the
-	 * distributions are the same. If the null hypothesis can be rejected with confidence
-	 * 1 - alpha, the check fails.  This check will fail randomly with probability alpha.
-	 */
-	public void checkNextPoissonConsistency(double mean) throws Exception {
-	    // Generate sample values
-	    int sampleSize = 1000;        // Number of deviates to generate
-	    int minExpectedCount = 7;     // Minimum size of expected bin count 
-	    long maxObservedValue = 0;   
-	    double alpha = 0.001;         // Probability of false failure         
-	    Frequency frequency = new Frequency();
-	    for (int i = 0; i < sampleSize; i++) {
-	        long value = randomData.nextPoisson(mean);
-	        if (value > maxObservedValue) {
-	            maxObservedValue = value;
-	        }
-	        frequency.addValue(value);
-	    }
-	    
-	    /*
-	     *  Set up bins for chi-square test.  
-	     *  Ensure expected counts are all at least minExpectedCount.
-	     *  Start with upper and lower tail bins.
-	     *  Lower bin = [0, lower); Upper bin = [upper, +inf).
-	     */
-	    PoissonDistribution poissonDistribution = new PoissonDistributionImpl(mean);
-	    int lower = 1;
-	    while (poissonDistribution.cumulativeProbability(lower - 1) * sampleSize < minExpectedCount) {
-	        lower++;
-	    }
-	    int upper = (int) (5 * mean);  // Even for mean = 1, not much mass beyond 5
-	    while ((1 - poissonDistribution.cumulativeProbability(upper - 1)) * sampleSize < minExpectedCount) {
-	        upper--;
-	    }
-	    
-	    // Set bin width for interior bins.  For poisson, only need to look at end bins.
-	    int binWidth = 1;
-	    boolean widthSufficient = false;
-	    double lowerBinMass = 0;
-	    double upperBinMass = 0;
-	    while (!widthSufficient) {
-	        lowerBinMass = poissonDistribution.cumulativeProbability(lower, lower + binWidth - 1);
-	        upperBinMass = poissonDistribution.cumulativeProbability(upper - binWidth + 1, upper);
-	        widthSufficient = Math.min(lowerBinMass, upperBinMass) * sampleSize >= minExpectedCount;
-	        binWidth++;
-	    }
-	   
-	    /*
-	     *  Determine interior bin bounds.  Bins are
-	     *  [1, lower = binBounds[0]), [lower, binBounds[1]), [binBounds[1], binBounds[2]), ... , 
-	     *    [binBounds[binCount - 2], upper = binBounds[binCount - 1]), [upper, +inf)
-	     *  
-	     */
-	    List<Integer> binBounds = new ArrayList<Integer>();
-	    binBounds.add(lower);
-	    int bound = lower + binWidth;
-	    while (bound < upper - binWidth) {
-	        binBounds.add(bound);
-	        bound += binWidth;
-	    }
-	    binBounds.add(bound);
-	    binBounds.add(upper);
-	    
-	    // Compute observed and expected bin counts
-	    final int binCount = binBounds.size() + 1; 
-	    long[] observed = new long[binCount];
-	    double[] expected = new double[binCount];
-	    
-	    // Bottom bin
-	    observed[0] = 0;
-	    for (int i = 0; i < lower; i++) {
-	        observed[0] += frequency.getCount(i);
-	    }
-	    expected[0] = poissonDistribution.cumulativeProbability(lower - 1) * sampleSize;
-	    
-	    // Top bin
-	    observed[binCount - 1] = 0;
-	    for (int i = upper; i <= maxObservedValue; i++) {
-	        observed[binCount - 1] += frequency.getCount(i);
-	    }
-	    expected[binCount - 1] = (1 - poissonDistribution.cumulativeProbability(upper - 1)) * sampleSize;
-	    
-	    // Interior bins
-	    for (int i = 1; i < binCount - 1; i++) {
-	        observed[i] = 0;
-	        for (int j = binBounds.get(i - 1); j < binBounds.get(i); j++) {
-	            observed[i] += frequency.getCount(j);
-	        } // Expected count is (mass in [binBounds[i], binBounds[i+1])) * sampleSize
-	        expected[i] = (poissonDistribution.cumulativeProbability(binBounds.get(i) - 1) -
-	            poissonDistribution.cumulativeProbability(binBounds.get(i - 1) -1)) * sampleSize;
-	    }
-	    
-	    // Use chisquare test to verify that generated values are poisson(mean)-distributed
-	    ChiSquareTest chiSquareTest = new ChiSquareTestImpl();
-	    try {
-	        // Fail if we can reject null hypothesis that distributions are the same
-	        assertFalse(chiSquareTest.chiSquareTest(expected, observed, alpha));
-	    } catch (AssertionFailedError ex) {
-	        StringBuffer msgBuffer = new StringBuffer();
-	        DecimalFormat df = new DecimalFormat("#.##");
-	        msgBuffer.append("Chisquare test failed for mean = ");
-	        msgBuffer.append(mean);
-	        msgBuffer.append(" p-value = ");
-	        msgBuffer.append(chiSquareTest.chiSquareTest(expected, observed));
-	        msgBuffer.append(" chisquare statistic = ");
-	        msgBuffer.append(chiSquareTest.chiSquare(expected, observed));
-	        msgBuffer.append(". \n");
-	        msgBuffer.append("bin\t\texpected\tobserved\n");
-	        for (int i = 0; i < expected.length; i++) {
-	            msgBuffer.append("[");
-	            msgBuffer.append(i == 0 ? 1: binBounds.get(i - 1));
-	            msgBuffer.append(",");
-	            msgBuffer.append(i == binBounds.size() ? "inf": binBounds.get(i));
-	            msgBuffer.append(")");
-	            msgBuffer.append("\t\t");
-	            msgBuffer.append(df.format(expected[i]));
-	            msgBuffer.append("\t\t");
-	            msgBuffer.append(observed[i]);
-	            msgBuffer.append("\n");
-	        }
-	        msgBuffer.append("This test can fail randomly due to sampling error with probability ");
-	        msgBuffer.append(alpha);
-	        msgBuffer.append(".");
-	        fail(msgBuffer.toString());
-	    }  
-	}
-
-	/** test dispersion and failute modes for nextHex() */
-	public void testNextHex() {
-		try {
-			randomData.nextHexString(-1);
-			fail("negative length supplied -- IllegalArgumentException expected");
-		} catch (IllegalArgumentException ex) {
-			// ignored
-		}
-		try {
-			randomData.nextHexString(0);
-			fail("zero length supplied -- IllegalArgumentException expected");
-		} catch (IllegalArgumentException ex) {
-			// ignored
-		}
-		String hexString = randomData.nextHexString(3);
-		if (hexString.length() != 3) {
-			fail("incorrect length for generated string");
-		}
-		hexString = randomData.nextHexString(1);
-		if (hexString.length() != 1) {
-			fail("incorrect length for generated string");
-		}
-		try {
-			hexString = randomData.nextHexString(0);
-			fail("zero length requested -- expecting IllegalArgumentException");
-		} catch (IllegalArgumentException ex) {
-			// ignored
-		}
-		if (hexString.length() != 1) {
-			fail("incorrect length for generated string");
-		}
-		Frequency f = new Frequency();
-		for (int i = 0; i < smallSampleSize; i++) {
-			hexString = randomData.nextHexString(100);
-			if (hexString.length() != 100) {
-				fail("incorrect length for generated string");
-			}
-			for (int j = 0; j < hexString.length(); j++) {
-				f.addValue(hexString.substring(j, j + 1));
-			}
-		}
-		double[] expected = new double[16];
-		long[] observed = new long[16];
-		for (int i = 0; i < 16; i++) {
-			expected[i] = (double) smallSampleSize * 100 / 16;
-			observed[i] = f.getCount(hex[i]);
-		}
-		/*
-		 * Use ChiSquare dist with df = 16-1 = 15, alpha = .001 Change to 30.58
-		 * for alpha = .01
-		 */
-		assertTrue("chi-square test -- will fail about 1 in 1000 times",
-				testStatistic.chiSquare(expected, observed) < 37.70);
-	}
-
-	/** test dispersion and failute modes for nextHex() */
-	public void testNextSecureHex() {
-		try {
-			randomData.nextSecureHexString(-1);
-			fail("negative length -- IllegalArgumentException expected");
-		} catch (IllegalArgumentException ex) {
-			// ignored
-		}
-		try {
-			randomData.nextSecureHexString(0);
-			fail("zero length -- IllegalArgumentException expected");
-		} catch (IllegalArgumentException ex) {
-			// ignored
-		}
-		String hexString = randomData.nextSecureHexString(3);
-		if (hexString.length() != 3) {
-			fail("incorrect length for generated string");
-		}
-		hexString = randomData.nextSecureHexString(1);
-		if (hexString.length() != 1) {
-			fail("incorrect length for generated string");
-		}
-		try {
-			hexString = randomData.nextSecureHexString(0);
-			fail("zero length requested -- expecting IllegalArgumentException");
-		} catch (IllegalArgumentException ex) {
-			// ignored
-		}
-		if (hexString.length() != 1) {
-			fail("incorrect length for generated string");
-		}
-		Frequency f = new Frequency();
-		for (int i = 0; i < smallSampleSize; i++) {
-			hexString = randomData.nextSecureHexString(100);
-			if (hexString.length() != 100) {
-				fail("incorrect length for generated string");
-			}
-			for (int j = 0; j < hexString.length(); j++) {
-				f.addValue(hexString.substring(j, j + 1));
-			}
-		}
-		double[] expected = new double[16];
-		long[] observed = new long[16];
-		for (int i = 0; i < 16; i++) {
-			expected[i] = (double) smallSampleSize * 100 / 16;
-			observed[i] = f.getCount(hex[i]);
-		}
-		/*
-		 * Use ChiSquare dist with df = 16-1 = 15, alpha = .001 Change to 30.58
-		 * for alpha = .01
-		 */
-		assertTrue("chi-square test -- will fail about 1 in 1000 times",
-				testStatistic.chiSquare(expected, observed) < 37.70);
-	}
-
-	/** test failure modes and dispersion of nextUniform() */
-	public void testNextUniform() {
-		try {
-			randomData.nextUniform(4, 3);
-			fail("IllegalArgumentException expected");
-		} catch (IllegalArgumentException ex) {
-			// ignored
-		}
-		try {
-			randomData.nextUniform(3, 3);
-			fail("IllegalArgumentException expected");
-		} catch (IllegalArgumentException ex) {
-			// ignored
-		}
-		double[] expected = { 500, 500 };
-		long[] observed = { 0, 0 };
-		double lower = -1d;
-		double upper = 20d;
-		double midpoint = (lower + upper) / 2d;
-		double result = 0;
-		for (int i = 0; i < 1000; i++) {
-			result = randomData.nextUniform(lower, upper);
-			if ((result == lower) || (result == upper)) {
-				fail("generated value equal to an endpoint: " + result);
-			}
-			if (result < midpoint) {
-				observed[0]++;
-			} else {
-				observed[1]++;
-			}
-		}
-		/*
-		 * Use ChiSquare dist with df = 2-1 = 1, alpha = .001 Change to 6.64 for
-		 * alpha = .01
-		 */
-		assertTrue("chi-square test -- will fail about 1 in 1000 times",
-				testStatistic.chiSquare(expected, observed) < 10.83);
-	}
-
-	/** test exclusive endpoints of nextUniform **/
-	public void testNextUniformExclusiveEndpoints() {
-		for (int i = 0; i < 1000; i++) {
-			double u = randomData.nextUniform(0.99, 1);
-			assertTrue(u > 0.99 && u < 1);
-		}
-	}
-
-	/** test failure modes and distribution of nextGaussian() */
-	public void testNextGaussian() {
-		try {
-			randomData.nextGaussian(0, 0);
-			fail("zero sigma -- IllegalArgumentException expected");
-		} catch (IllegalArgumentException ex) {
-			// ignored
-		}
-		SummaryStatistics u = new SummaryStatistics();
-		for (int i = 0; i < largeSampleSize; i++) {
-			u.addValue(randomData.nextGaussian(0, 1));
-		}
-		double xbar = u.getMean();
-		double s = u.getStandardDeviation();
-		double n = u.getN();
-		/*
-		 * t-test at .001-level TODO: replace with externalized t-test, with
-		 * test statistic defined in TestStatistic
-		 */
-		assertTrue(Math.abs(xbar) / (s / Math.sqrt(n)) < 3.29);
-	}
-
-	/** test failure modes and distribution of nextExponential() */
-	public void testNextExponential() {
-		try {
-			randomData.nextExponential(-1);
-			fail("negative mean -- expecting IllegalArgumentException");
-		} catch (IllegalArgumentException ex) {
-			// ignored
-		}
+    }
+    
+    /** 
+     * Verifies that nextPoisson(mean) generates an empirical distribution of values
+     * consistent with PoissonDistributionImpl by generating 1000 values, computing a
+     * grouped frequency distribution of the observed values and comparing this distribution
+     * to the corresponding expected distribution computed using PoissonDistributionImpl.
+     * Uses ChiSquare test of goodness of fit to evaluate the null hypothesis that the
+     * distributions are the same. If the null hypothesis can be rejected with confidence
+     * 1 - alpha, the check fails.  This check will fail randomly with probability alpha.
+     */
+    public void checkNextPoissonConsistency(double mean) throws Exception {
+        // Generate sample values
+        int sampleSize = 1000;        // Number of deviates to generate
+        int minExpectedCount = 7;     // Minimum size of expected bin count 
+        long maxObservedValue = 0;   
+        double alpha = 0.001;         // Probability of false failure         
+        Frequency frequency = new Frequency();
+        for (int i = 0; i < sampleSize; i++) {
+            long value = randomData.nextPoisson(mean);
+            if (value > maxObservedValue) {
+                maxObservedValue = value;
+            }
+            frequency.addValue(value);
+        }
+        
+        /*
+         *  Set up bins for chi-square test.  
+         *  Ensure expected counts are all at least minExpectedCount.
+         *  Start with upper and lower tail bins.
+         *  Lower bin = [0, lower); Upper bin = [upper, +inf).
+         */
+        PoissonDistribution poissonDistribution = new PoissonDistributionImpl(mean);
+        int lower = 1;
+        while (poissonDistribution.cumulativeProbability(lower - 1) * sampleSize < minExpectedCount) {
+            lower++;
+        }
+        int upper = (int) (5 * mean);  // Even for mean = 1, not much mass beyond 5
+        while ((1 - poissonDistribution.cumulativeProbability(upper - 1)) * sampleSize < minExpectedCount) {
+            upper--;
+        }
+        
+        // Set bin width for interior bins.  For poisson, only need to look at end bins.
+        int binWidth = 1;
+        boolean widthSufficient = false;
+        double lowerBinMass = 0;
+        double upperBinMass = 0;
+        while (!widthSufficient) {
+            lowerBinMass = poissonDistribution.cumulativeProbability(lower, lower + binWidth - 1);
+            upperBinMass = poissonDistribution.cumulativeProbability(upper - binWidth + 1, upper);
+            widthSufficient = Math.min(lowerBinMass, upperBinMass) * sampleSize >= minExpectedCount;
+            binWidth++;
+        }
+       
+        /*
+         *  Determine interior bin bounds.  Bins are
+         *  [1, lower = binBounds[0]), [lower, binBounds[1]), [binBounds[1], binBounds[2]), ... , 
+         *    [binBounds[binCount - 2], upper = binBounds[binCount - 1]), [upper, +inf)
+         *  
+         */
+        List<Integer> binBounds = new ArrayList<Integer>();
+        binBounds.add(lower);
+        int bound = lower + binWidth;
+        while (bound < upper - binWidth) {
+            binBounds.add(bound);
+            bound += binWidth;
+        }
+        binBounds.add(bound);
+        binBounds.add(upper);
+        
+        // Compute observed and expected bin counts
+        final int binCount = binBounds.size() + 1; 
+        long[] observed = new long[binCount];
+        double[] expected = new double[binCount];
+        
+        // Bottom bin
+        observed[0] = 0;
+        for (int i = 0; i < lower; i++) {
+            observed[0] += frequency.getCount(i);
+        }
+        expected[0] = poissonDistribution.cumulativeProbability(lower - 1) * sampleSize;
+        
+        // Top bin
+        observed[binCount - 1] = 0;
+        for (int i = upper; i <= maxObservedValue; i++) {
+            observed[binCount - 1] += frequency.getCount(i);
+        }
+        expected[binCount - 1] = (1 - poissonDistribution.cumulativeProbability(upper - 1)) * sampleSize;
+        
+        // Interior bins
+        for (int i = 1; i < binCount - 1; i++) {
+            observed[i] = 0;
+            for (int j = binBounds.get(i - 1); j < binBounds.get(i); j++) {
+                observed[i] += frequency.getCount(j);
+            } // Expected count is (mass in [binBounds[i], binBounds[i+1])) * sampleSize
+            expected[i] = (poissonDistribution.cumulativeProbability(binBounds.get(i) - 1) -
+                poissonDistribution.cumulativeProbability(binBounds.get(i - 1) -1)) * sampleSize;
+        }
+        
+        // Use chisquare test to verify that generated values are poisson(mean)-distributed
+        ChiSquareTest chiSquareTest = new ChiSquareTestImpl();
+        try {
+            // Fail if we can reject null hypothesis that distributions are the same
+            assertFalse(chiSquareTest.chiSquareTest(expected, observed, alpha));
+        } catch (AssertionFailedError ex) {
+            StringBuffer msgBuffer = new StringBuffer();
+            DecimalFormat df = new DecimalFormat("#.##");
+            msgBuffer.append("Chisquare test failed for mean = ");
+            msgBuffer.append(mean);
+            msgBuffer.append(" p-value = ");
+            msgBuffer.append(chiSquareTest.chiSquareTest(expected, observed));
+            msgBuffer.append(" chisquare statistic = ");
+            msgBuffer.append(chiSquareTest.chiSquare(expected, observed));
+            msgBuffer.append(". \n");
+            msgBuffer.append("bin\t\texpected\tobserved\n");
+            for (int i = 0; i < expected.length; i++) {
+                msgBuffer.append("[");
+                msgBuffer.append(i == 0 ? 1: binBounds.get(i - 1));
+                msgBuffer.append(",");
+                msgBuffer.append(i == binBounds.size() ? "inf": binBounds.get(i));
+                msgBuffer.append(")");
+                msgBuffer.append("\t\t");
+                msgBuffer.append(df.format(expected[i]));
+                msgBuffer.append("\t\t");
+                msgBuffer.append(observed[i]);
+                msgBuffer.append("\n");
+            }
+            msgBuffer.append("This test can fail randomly due to sampling error with probability ");
+            msgBuffer.append(alpha);
+            msgBuffer.append(".");
+            fail(msgBuffer.toString());
+        }  
+    }
+
+    /** test dispersion and failute modes for nextHex() */
+    public void testNextHex() {
+        try {
+            randomData.nextHexString(-1);
+            fail("negative length supplied -- IllegalArgumentException expected");
+        } catch (IllegalArgumentException ex) {
+            // ignored
+        }
+        try {
+            randomData.nextHexString(0);
+            fail("zero length supplied -- IllegalArgumentException expected");
+        } catch (IllegalArgumentException ex) {
+            // ignored
+        }
+        String hexString = randomData.nextHexString(3);
+        if (hexString.length() != 3) {
+            fail("incorrect length for generated string");
+        }
+        hexString = randomData.nextHexString(1);
+        if (hexString.length() != 1) {
+            fail("incorrect length for generated string");
+        }
+        try {
+            hexString = randomData.nextHexString(0);
+            fail("zero length requested -- expecting IllegalArgumentException");
+        } catch (IllegalArgumentException ex) {
+            // ignored
+        }
+        if (hexString.length() != 1) {
+            fail("incorrect length for generated string");
+        }
+        Frequency f = new Frequency();
+        for (int i = 0; i < smallSampleSize; i++) {
+            hexString = randomData.nextHexString(100);
+            if (hexString.length() != 100) {
+                fail("incorrect length for generated string");
+            }
+            for (int j = 0; j < hexString.length(); j++) {
+                f.addValue(hexString.substring(j, j + 1));
+            }
+        }
+        double[] expected = new double[16];
+        long[] observed = new long[16];
+        for (int i = 0; i < 16; i++) {
+            expected[i] = (double) smallSampleSize * 100 / 16;
+            observed[i] = f.getCount(hex[i]);
+        }
+        /*
+         * Use ChiSquare dist with df = 16-1 = 15, alpha = .001 Change to 30.58
+         * for alpha = .01
+         */
+        assertTrue("chi-square test -- will fail about 1 in 1000 times",
+                testStatistic.chiSquare(expected, observed) < 37.70);
+    }
+
+    /** test dispersion and failute modes for nextHex() */
+    public void testNextSecureHex() {
+        try {
+            randomData.nextSecureHexString(-1);
+            fail("negative length -- IllegalArgumentException expected");
+        } catch (IllegalArgumentException ex) {
+            // ignored
+        }
+        try {
+            randomData.nextSecureHexString(0);
+            fail("zero length -- IllegalArgumentException expected");
+        } catch (IllegalArgumentException ex) {
+            // ignored
+        }
+        String hexString = randomData.nextSecureHexString(3);
+        if (hexString.length() != 3) {
+            fail("incorrect length for generated string");
+        }
+        hexString = randomData.nextSecureHexString(1);
+        if (hexString.length() != 1) {
+            fail("incorrect length for generated string");
+        }
+        try {
+            hexString = randomData.nextSecureHexString(0);
+            fail("zero length requested -- expecting IllegalArgumentException");
+        } catch (IllegalArgumentException ex) {
+            // ignored
+        }
+        if (hexString.length() != 1) {
+            fail("incorrect length for generated string");
+        }
+        Frequency f = new Frequency();
+        for (int i = 0; i < smallSampleSize; i++) {
+            hexString = randomData.nextSecureHexString(100);
+            if (hexString.length() != 100) {
+                fail("incorrect length for generated string");
+            }
+            for (int j = 0; j < hexString.length(); j++) {
+                f.addValue(hexString.substring(j, j + 1));
+            }
+        }
+        double[] expected = new double[16];
+        long[] observed = new long[16];
+        for (int i = 0; i < 16; i++) {
+            expected[i] = (double) smallSampleSize * 100 / 16;
+            observed[i] = f.getCount(hex[i]);
+        }
+        /*
+         * Use ChiSquare dist with df = 16-1 = 15, alpha = .001 Change to 30.58
+         * for alpha = .01
+         */
+        assertTrue("chi-square test -- will fail about 1 in 1000 times",
+                testStatistic.chiSquare(expected, observed) < 37.70);
+    }
+
+    /** test failure modes and dispersion of nextUniform() */
+    public void testNextUniform() {
+        try {
+            randomData.nextUniform(4, 3);
+            fail("IllegalArgumentException expected");
+        } catch (IllegalArgumentException ex) {
+            // ignored
+        }
+        try {
+            randomData.nextUniform(3, 3);
+            fail("IllegalArgumentException expected");
+        } catch (IllegalArgumentException ex) {
+            // ignored
+        }
+        double[] expected = { 500, 500 };
+        long[] observed = { 0, 0 };
+        double lower = -1d;
+        double upper = 20d;
+        double midpoint = (lower + upper) / 2d;
+        double result = 0;
+        for (int i = 0; i < 1000; i++) {
+            result = randomData.nextUniform(lower, upper);
+            if ((result == lower) || (result == upper)) {
+                fail("generated value equal to an endpoint: " + result);
+            }
+            if (result < midpoint) {
+                observed[0]++;
+            } else {
+                observed[1]++;
+            }
+        }
+        /*
+         * Use ChiSquare dist with df = 2-1 = 1, alpha = .001 Change to 6.64 for
+         * alpha = .01
+         */
+        assertTrue("chi-square test -- will fail about 1 in 1000 times",
+                testStatistic.chiSquare(expected, observed) < 10.83);
+    }
+
+    /** test exclusive endpoints of nextUniform **/
+    public void testNextUniformExclusiveEndpoints() {
+        for (int i = 0; i < 1000; i++) {
+            double u = randomData.nextUniform(0.99, 1);
+            assertTrue(u > 0.99 && u < 1);
+        }
+    }
+
+    /** test failure modes and distribution of nextGaussian() */
+    public void testNextGaussian() {
+        try {
+            randomData.nextGaussian(0, 0);
+            fail("zero sigma -- IllegalArgumentException expected");
+        } catch (IllegalArgumentException ex) {
+            // ignored
+        }
+        SummaryStatistics u = new SummaryStatistics();
+        for (int i = 0; i < largeSampleSize; i++) {
+            u.addValue(randomData.nextGaussian(0, 1));
+        }
+        double xbar = u.getMean();
+        double s = u.getStandardDeviation();
+        double n = u.getN();
+        /*
+         * t-test at .001-level TODO: replace with externalized t-test, with
+         * test statistic defined in TestStatistic
+         */
+        assertTrue(Math.abs(xbar) / (s / Math.sqrt(n)) < 3.29);
+    }
+
+    /** test failure modes and distribution of nextExponential() */
+    public void testNextExponential() {
+        try {
+            randomData.nextExponential(-1);
+            fail("negative mean -- expecting IllegalArgumentException");
+        } catch (IllegalArgumentException ex) {
+            // ignored
+        }
         try {
             randomData.nextExponential(0);
             fail("zero mean -- expecting IllegalArgumentException");
         } catch (IllegalArgumentException ex) {
             // ignored
         }
-		long cumFreq = 0;
-		double v = 0;
-		for (int i = 0; i < largeSampleSize; i++) {
-			v = randomData.nextExponential(1);
-			assertTrue("exponential deviate postive", v > 0);
-			if (v < 2)
-				cumFreq++;
-		}
-		/*
-		 * TODO: Replace with a statistical test, with statistic added to
-		 * TestStatistic. Check below compares observed cumulative distribution
-		 * evaluated at 2 with exponential CDF
-		 */
-		assertEquals("exponential cumulative distribution", (double) cumFreq
-				/ (double) largeSampleSize, 0.8646647167633873, .2);
-	}
-
-	/** test reseeding, algorithm/provider games */
-	public void testConfig() {
-		randomData.reSeed(1000);
-		double v = randomData.nextUniform(0, 1);
-		randomData.reSeed();
-		assertTrue("different seeds", Math
-				.abs(v - randomData.nextUniform(0, 1)) > 10E-12);
-		randomData.reSeed(1000);
-		assertEquals("same seeds", v, randomData.nextUniform(0, 1), 10E-12);
-		randomData.reSeedSecure(1000);
-		String hex = randomData.nextSecureHexString(40);
-		randomData.reSeedSecure();
-		assertTrue("different seeds", !hex.equals(randomData
-				.nextSecureHexString(40)));
-		randomData.reSeedSecure(1000);
-		assertTrue("same seeds", !hex
-				.equals(randomData.nextSecureHexString(40)));
-
-		/*
-		 * remove this test back soon, since it takes about 4 seconds
-		 *
-		 * try { randomData.setSecureAlgorithm("SHA1PRNG","SUN"); } catch
-		 * (NoSuchProviderException ex) { ; } assertTrue("different seeds",
-		 * !hex.equals(randomData.nextSecureHexString(40))); try {
-		 * randomData.setSecureAlgorithm("NOSUCHTHING","SUN");
-		 * fail("expecting NoSuchAlgorithmException"); } catch
-		 * (NoSuchProviderException ex) { ; } catch (NoSuchAlgorithmException
-		 * ex) { ; }
-		 *
-		 * try { randomData.setSecureAlgorithm("SHA1PRNG","NOSUCHPROVIDER");
-		 * fail("expecting NoSuchProviderException"); } catch
-		 * (NoSuchProviderException ex) { ; }
-		 */
-
-		// test reseeding without first using the generators
-		RandomDataImpl rd = new RandomDataImpl();
-		rd.reSeed(100);
-		rd.nextLong(1, 2);
-		RandomDataImpl rd2 = new RandomDataImpl();
-		rd2.reSeedSecure(2000);
-		rd2.nextSecureLong(1, 2);
-		rd = new RandomDataImpl();
-		rd.reSeed();
-		rd.nextLong(1, 2);
-		rd2 = new RandomDataImpl();
-		rd2.reSeedSecure();
-		rd2.nextSecureLong(1, 2);
-	}
-
-	/** tests for nextSample() sampling from Collection */
-	public void testNextSample() {
-		Object[][] c = { { "0", "1" }, { "0", "2" }, { "0", "3" },
-				{ "0", "4" }, { "1", "2" }, { "1", "3" }, { "1", "4" },
-				{ "2", "3" }, { "2", "4" }, { "3", "4" } };
-		long[] observed = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
-		double[] expected = { 100, 100, 100, 100, 100, 100, 100, 100, 100, 100 };
-
-		HashSet<Object> cPop = new HashSet<Object>(); // {0,1,2,3,4}
-		for (int i = 0; i < 5; i++) {
-			cPop.add(Integer.toString(i));
-		}
-
-		Object[] sets = new Object[10]; // 2-sets from 5
-		for (int i = 0; i < 10; i++) {
-			HashSet<Object> hs = new HashSet<Object>();
-			hs.add(c[i][0]);
-			hs.add(c[i][1]);
-			sets[i] = hs;
-		}
-
-		for (int i = 0; i < 1000; i++) {
-			Object[] cSamp = randomData.nextSample(cPop, 2);
-			observed[findSample(sets, cSamp)]++;
-		}
-
-		/*
-		 * Use ChiSquare dist with df = 10-1 = 9, alpha = .001 Change to 21.67
-		 * for alpha = .01
-		 */
-		assertTrue("chi-square test -- will fail about 1 in 1000 times",
-				testStatistic.chiSquare(expected, observed) < 27.88);
-
-		// Make sure sample of size = size of collection returns same collection
-		HashSet<Object> hs = new HashSet<Object>();
-		hs.add("one");
-		Object[] one = randomData.nextSample(hs, 1);
-		String oneString = (String) one[0];
-		if ((one.length != 1) || !oneString.equals("one")) {
-			fail("bad sample for set size = 1, sample size = 1");
-		}
-
-		// Make sure we fail for sample size > collection size
-		try {
-			one = randomData.nextSample(hs, 2);
-			fail("sample size > set size, expecting IllegalArgumentException");
-		} catch (IllegalArgumentException ex) {
-			// ignored
-		}
-
-		// Make sure we fail for empty collection
-		try {
-			hs = new HashSet<Object>();
-			one = randomData.nextSample(hs, 0);
-			fail("n = k = 0, expecting IllegalArgumentException");
-		} catch (IllegalArgumentException ex) {
-			// ignored
-		}
-	}
-
-	@SuppressWarnings("unchecked")
-	private int findSample(Object[] u, Object[] samp) {
-		for (int i = 0; i < u.length; i++) {
-			HashSet<Object> set = (HashSet<Object>) u[i];
-			HashSet<Object> sampSet = new HashSet<Object>();
-			for (int j = 0; j < samp.length; j++) {
-				sampSet.add(samp[j]);
-			}
-			if (set.equals(sampSet)) {
-				return i;
-			}
-		}
-		fail("sample not found:{" + samp[0] + "," + samp[1] + "}");
-		return -1;
-	}
-
-	/** tests for nextPermutation */
-	public void testNextPermutation() {
-		int[][] p = { { 0, 1, 2 }, { 0, 2, 1 }, { 1, 0, 2 }, { 1, 2, 0 },
-				{ 2, 0, 1 }, { 2, 1, 0 } };
-		long[] observed = { 0, 0, 0, 0, 0, 0 };
-		double[] expected = { 100, 100, 100, 100, 100, 100 };
-
-		for (int i = 0; i < 600; i++) {
-			int[] perm = randomData.nextPermutation(3, 3);
-			observed[findPerm(p, perm)]++;
-		}
-
-		/*
-		 * Use ChiSquare dist with df = 6-1 = 5, alpha = .001 Change to 15.09
-		 * for alpha = .01
-		 */
-		assertTrue("chi-square test -- will fail about 1 in 1000 times",
-				testStatistic.chiSquare(expected, observed) < 20.52);
-
-		// Check size = 1 boundary case
-		int[] perm = randomData.nextPermutation(1, 1);
-		if ((perm.length != 1) || (perm[0] != 0)) {
-			fail("bad permutation for n = 1, sample k = 1");
-
-			// Make sure we fail for k size > n
-			try {
-				perm = randomData.nextPermutation(2, 3);
-				fail("permutation k > n, expecting IllegalArgumentException");
-			} catch (IllegalArgumentException ex) {
-				// ignored
-			}
-
-			// Make sure we fail for n = 0
-			try {
-				perm = randomData.nextPermutation(0, 0);
-				fail("permutation k = n = 0, expecting IllegalArgumentException");
-			} catch (IllegalArgumentException ex) {
-				// ignored
-			}
-
-			// Make sure we fail for k < n < 0
-			try {
-				perm = randomData.nextPermutation(-1, -3);
-				fail("permutation k < n < 0, expecting IllegalArgumentException");
-			} catch (IllegalArgumentException ex) {
-				// ignored
-			}
-
-		}
-	}
-	
-	// Disable until we have equals
-	//public void testSerial() {
-	//    assertEquals(randomData, TestUtils.serializeAndRecover(randomData));
-	//}
-	
-	private int findPerm(int[][] p, int[] samp) {
-		for (int i = 0; i < p.length; i++) {
-			boolean good = true;
-			for (int j = 0; j < samp.length; j++) {
-				if (samp[j] != p[i][j]) {
-					good = false;
-				}
-			}
-			if (good) {
-				return i;
-			}
-		}
-		fail("permutation not found");
-		return -1;
-	}
+        long cumFreq = 0;
+        double v = 0;
+        for (int i = 0; i < largeSampleSize; i++) {
+            v = randomData.nextExponential(1);
+            assertTrue("exponential deviate postive", v > 0);
+            if (v < 2)
+                cumFreq++;
+        }
+        /*
+         * TODO: Replace with a statistical test, with statistic added to
+         * TestStatistic. Check below compares observed cumulative distribution
+         * evaluated at 2 with exponential CDF
+         */
+        assertEquals("exponential cumulative distribution", (double) cumFreq
+                / (double) largeSampleSize, 0.8646647167633873, .2);
+    }
+
+    /** test reseeding, algorithm/provider games */
+    public void testConfig() {
+        randomData.reSeed(1000);
+        double v = randomData.nextUniform(0, 1);
+        randomData.reSeed();
+        assertTrue("different seeds", Math
+                .abs(v - randomData.nextUniform(0, 1)) > 10E-12);
+        randomData.reSeed(1000);
+        assertEquals("same seeds", v, randomData.nextUniform(0, 1), 10E-12);
+        randomData.reSeedSecure(1000);
+        String hex = randomData.nextSecureHexString(40);
+        randomData.reSeedSecure();
+        assertTrue("different seeds", !hex.equals(randomData
+                .nextSecureHexString(40)));
+        randomData.reSeedSecure(1000);
+        assertTrue("same seeds", !hex
+                .equals(randomData.nextSecureHexString(40)));
+
+        /*
+         * remove this test back soon, since it takes about 4 seconds
+         *
+         * try { randomData.setSecureAlgorithm("SHA1PRNG","SUN"); } catch
+         * (NoSuchProviderException ex) { ; } assertTrue("different seeds",
+         * !hex.equals(randomData.nextSecureHexString(40))); try {
+         * randomData.setSecureAlgorithm("NOSUCHTHING","SUN");
+         * fail("expecting NoSuchAlgorithmException"); } catch
+         * (NoSuchProviderException ex) { ; } catch (NoSuchAlgorithmException
+         * ex) { ; }
+         *
+         * try { randomData.setSecureAlgorithm("SHA1PRNG","NOSUCHPROVIDER");
+         * fail("expecting NoSuchProviderException"); } catch
+         * (NoSuchProviderException ex) { ; }
+         */
+
+        // test reseeding without first using the generators
+        RandomDataImpl rd = new RandomDataImpl();
+        rd.reSeed(100);
+        rd.nextLong(1, 2);
+        RandomDataImpl rd2 = new RandomDataImpl();
+        rd2.reSeedSecure(2000);
+        rd2.nextSecureLong(1, 2);
+        rd = new RandomDataImpl();
+        rd.reSeed();
+        rd.nextLong(1, 2);
+        rd2 = new RandomDataImpl();
+        rd2.reSeedSecure();
+        rd2.nextSecureLong(1, 2);
+    }
+
+    /** tests for nextSample() sampling from Collection */
+    public void testNextSample() {
+        Object[][] c = { { "0", "1" }, { "0", "2" }, { "0", "3" },
+                { "0", "4" }, { "1", "2" }, { "1", "3" }, { "1", "4" },
+                { "2", "3" }, { "2", "4" }, { "3", "4" } };
+        long[] observed = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
+        double[] expected = { 100, 100, 100, 100, 100, 100, 100, 100, 100, 100 };
+
+        HashSet<Object> cPop = new HashSet<Object>(); // {0,1,2,3,4}
+        for (int i = 0; i < 5; i++) {
+            cPop.add(Integer.toString(i));
+        }
+
+        Object[] sets = new Object[10]; // 2-sets from 5
+        for (int i = 0; i < 10; i++) {
+            HashSet<Object> hs = new HashSet<Object>();
+            hs.add(c[i][0]);
+            hs.add(c[i][1]);
+            sets[i] = hs;
+        }
+
+        for (int i = 0; i < 1000; i++) {
+            Object[] cSamp = randomData.nextSample(cPop, 2);
+            observed[findSample(sets, cSamp)]++;
+        }
+
+        /*
+         * Use ChiSquare dist with df = 10-1 = 9, alpha = .001 Change to 21.67
+         * for alpha = .01
+         */
+        assertTrue("chi-square test -- will fail about 1 in 1000 times",
+                testStatistic.chiSquare(expected, observed) < 27.88);
+
+        // Make sure sample of size = size of collection returns same collection
+        HashSet<Object> hs = new HashSet<Object>();
+        hs.add("one");
+        Object[] one = randomData.nextSample(hs, 1);
+        String oneString = (String) one[0];
+        if ((one.length != 1) || !oneString.equals("one")) {
+            fail("bad sample for set size = 1, sample size = 1");
+        }
+
+        // Make sure we fail for sample size > collection size
+        try {
+            one = randomData.nextSample(hs, 2);
+            fail("sample size > set size, expecting IllegalArgumentException");
+        } catch (IllegalArgumentException ex) {
+            // ignored
+        }
+
+        // Make sure we fail for empty collection
+        try {
+            hs = new HashSet<Object>();
+            one = randomData.nextSample(hs, 0);
+            fail("n = k = 0, expecting IllegalArgumentException");
+        } catch (IllegalArgumentException ex) {
+            // ignored
+        }
+    }
+
+    @SuppressWarnings("unchecked")
+    private int findSample(Object[] u, Object[] samp) {
+        for (int i = 0; i < u.length; i++) {
+            HashSet<Object> set = (HashSet<Object>) u[i];
+            HashSet<Object> sampSet = new HashSet<Object>();
+            for (int j = 0; j < samp.length; j++) {
+                sampSet.add(samp[j]);
+            }
+            if (set.equals(sampSet)) {
+                return i;
+            }
+        }
+        fail("sample not found:{" + samp[0] + "," + samp[1] + "}");
+        return -1;
+    }
+
+    /** tests for nextPermutation */
+    public void testNextPermutation() {
+        int[][] p = { { 0, 1, 2 }, { 0, 2, 1 }, { 1, 0, 2 }, { 1, 2, 0 },
+                { 2, 0, 1 }, { 2, 1, 0 } };
+        long[] observed = { 0, 0, 0, 0, 0, 0 };
+        double[] expected = { 100, 100, 100, 100, 100, 100 };
+
+        for (int i = 0; i < 600; i++) {
+            int[] perm = randomData.nextPermutation(3, 3);
+            observed[findPerm(p, perm)]++;
+        }
+
+        /*
+         * Use ChiSquare dist with df = 6-1 = 5, alpha = .001 Change to 15.09
+         * for alpha = .01
+         */
+        assertTrue("chi-square test -- will fail about 1 in 1000 times",
+                testStatistic.chiSquare(expected, observed) < 20.52);
+
+        // Check size = 1 boundary case
+        int[] perm = randomData.nextPermutation(1, 1);
+        if ((perm.length != 1) || (perm[0] != 0)) {
+            fail("bad permutation for n = 1, sample k = 1");
+
+            // Make sure we fail for k size > n
+            try {
+                perm = randomData.nextPermutation(2, 3);
+                fail("permutation k > n, expecting IllegalArgumentException");
+            } catch (IllegalArgumentException ex) {
+                // ignored
+            }
+
+            // Make sure we fail for n = 0
+            try {
+                perm = randomData.nextPermutation(0, 0);
+                fail("permutation k = n = 0, expecting IllegalArgumentException");
+            } catch (IllegalArgumentException ex) {
+                // ignored
+            }
+
+            // Make sure we fail for k < n < 0
+            try {
+                perm = randomData.nextPermutation(-1, -3);
+                fail("permutation k < n < 0, expecting IllegalArgumentException");
+            } catch (IllegalArgumentException ex) {
+                // ignored
+            }
+
+        }
+    }
+    
+    // Disable until we have equals
+    //public void testSerial() {
+    //    assertEquals(randomData, TestUtils.serializeAndRecover(randomData));
+    //}
+    
+    private int findPerm(int[][] p, int[] samp) {
+        for (int i = 0; i < p.length; i++) {
+            boolean good = true;
+            for (int j = 0; j < samp.length; j++) {
+                if (samp[j] != p[i][j]) {
+                    good = false;
+                }
+            }
+            if (good) {
+                return i;
+            }
+        }
+        fail("permutation not found");
+        return -1;
+    }
 }

Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math/stat/inference/ChiSquareFactoryTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math/stat/inference/ChiSquareFactoryTest.java?rev=888683&r1=888682&r2=888683&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/java/org/apache/commons/math/stat/inference/ChiSquareFactoryTest.java (original)
+++ commons/proper/math/trunk/src/test/java/org/apache/commons/math/stat/inference/ChiSquareFactoryTest.java Wed Dec  9 02:34:11 2009
@@ -32,7 +32,7 @@
 
     @Override
     public void setUp() throws Exception {
-    	super.setUp();
+        super.setUp();
         testStatistic = TestUtils.getUnknownDistributionChiSquareTest();
     }
 

Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math/stat/inference/TTestFactoryTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math/stat/inference/TTestFactoryTest.java?rev=888683&r1=888682&r2=888683&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/java/org/apache/commons/math/stat/inference/TTestFactoryTest.java (original)
+++ commons/proper/math/trunk/src/test/java/org/apache/commons/math/stat/inference/TTestFactoryTest.java Wed Dec  9 02:34:11 2009
@@ -32,7 +32,7 @@
 
     @Override
     public void setUp() {
-    	super.setUp();
+        super.setUp();
         testStatistic = TestUtils.getTTest();
     }