* Verifies that Monte Carlo simulation gives results close to exact p values. This test is a
* little long-running (more than two minutes on a fast machine), so is disabled by default.
*/
// @Test
public void testTwoSampleMonteCarlo() {
final KolmogorovSmirnovTest test = new KolmogorovSmirnovTest(new Well19937c(1000));
final int sampleSize = 14;
final double tol = .001;
final double[] shortUniform = new double[sampleSize];
System.arraycopy(uniform, 0, shortUniform, 0, sampleSize);
final double[] shortGaussian = new double[sampleSize];