diff --git a/FastRngTests/Double/Distributions/Beta.cs b/FastRngTests/Double/Distributions/Beta.cs index 40db500..aa8ba0f 100644 --- a/FastRngTests/Double/Distributions/Beta.cs +++ b/FastRngTests/Double/Distributions/Beta.cs @@ -83,24 +83,6 @@ namespace FastRngTests.Double.Distributions Assert.That(samples.Max(), Is.LessThanOrEqualTo(1.0), "Max is out of range"); } - [Test] - [Category(TestCategories.COVER)] - [Category(TestCategories.NORMAL)] - public void ParameterTest01() - { - var dist = new FastRng.Double.Distributions.Beta(); - - Assert.Throws(() => dist.A = 0); - Assert.Throws(() => dist.A = -78); - Assert.DoesNotThrow(() => dist.A = 0.0001); - Assert.DoesNotThrow(() => dist.A = 4); - - Assert.Throws(() => dist.B = 0); - Assert.Throws(() => dist.B = -78); - Assert.DoesNotThrow(() => dist.B = 0.0001); - Assert.DoesNotThrow(() => dist.B = 4); - } - [Test] [Category(TestCategories.COVER)] [Category(TestCategories.NORMAL)]