From 1a8741aa546651ec5e87db6da245046e726f26a6 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Wed, 30 Sep 2020 20:21:02 +0200 Subject: [PATCH] Removed test for parameters which is no longer needed due to shape fitter --- FastRngTests/Double/Distributions/Beta.cs | 18 ------------------ 1 file changed, 18 deletions(-) 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)]