--TEST-- stats_cdf_chisquare() --FILE-- 3 var_dump(stats_cdf_chisquare(-0.1, 2, 2)); // P < 0 var_dump(stats_cdf_chisquare(1.1, 2, 2)); // P > 1 var_dump(stats_cdf_chisquare(-0.1, 2, 1)); // X < 0 var_dump(stats_cdf_chisquare(1, -0.1, 1)); // DF < 0 ?> --EXPECTF-- float(0.393469) float(1) float(2) Warning: stats_cdf_chisquare(): Third parameter should be in the 1..3 range in %s on line %d bool(false) Warning: stats_cdf_chisquare(): Third parameter should be in the 1..3 range in %s on line %d bool(false) Warning: stats_cdf_chisquare(): Computation Error in %s on line %d bool(false) Warning: stats_cdf_chisquare(): Computation Error in %s on line %d bool(false) Warning: stats_cdf_chisquare(): Computation Error in %s on line %d bool(false) Warning: stats_cdf_chisquare(): Computation Error in %s on line %d bool(false)