// Copyright (C) Stichting Deltares 2017. All rights reserved. // // This file is part of Ringtoets. // // Ringtoets is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // All names, logos, and references to "Deltares" are registered trademarks of // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. using System; using System.Collections.Generic; using Core.Common.Base.Data; using Core.Common.Data.TestUtil; using Core.Common.TestUtil; using NUnit.Framework; using Ringtoets.Common.Data.Probabilistics; using Ringtoets.Common.Data.TestUtil; namespace Ringtoets.Common.Data.Test.Probabilistics { [TestFixture] public class NormalDistributionTest { [Test] public void DefaultConstructor_ExpectedValues() { // Call var distribution = new NormalDistribution(); // Assert Assert.IsInstanceOf(distribution); const int numberOfDecimalPlaces = RoundedDouble.MaximumNumberOfDecimalPlaces; Assert.AreEqual(0.0, distribution.Mean.Value); Assert.AreEqual(numberOfDecimalPlaces, distribution.Mean.NumberOfDecimalPlaces); Assert.AreEqual(1.0, distribution.StandardDeviation.Value); Assert.AreEqual(numberOfDecimalPlaces, distribution.StandardDeviation.NumberOfDecimalPlaces); } [Test] [TestCase(0)] [TestCase(2)] [TestCase(15)] public void Constructor_WithParameter_ExpectedValues(int numberOfDecimalPlaces) { // Call var distribution = new NormalDistribution(numberOfDecimalPlaces); // Assert Assert.IsInstanceOf(distribution); Assert.AreEqual(0.0, distribution.Mean.Value); Assert.AreEqual(numberOfDecimalPlaces, distribution.Mean.NumberOfDecimalPlaces); Assert.AreEqual(1.0, distribution.StandardDeviation.Value); Assert.AreEqual(numberOfDecimalPlaces, distribution.StandardDeviation.NumberOfDecimalPlaces); } [Test] public void Mean_SetNewValue_GetValueRoundedToGivenNumberOfDecimalPlaces() { // Setup const double value = 1.23456789; const int numberOfDecimalPlaces = 4; var distribution = new NormalDistribution(numberOfDecimalPlaces); // Call distribution.Mean = (RoundedDouble) value; // Assert Assert.AreEqual(numberOfDecimalPlaces, distribution.Mean.NumberOfDecimalPlaces); Assert.AreEqual(new RoundedDouble(numberOfDecimalPlaces, value), distribution.Mean); } [Test] [TestCase(1.23456789)] [TestCase(0 - 1e-3, Description = "Valid standard deviation due to rounding to 0.0")] public void StandardDeviation_SetNewValue_GetValueRoundedToGivenNumberOfDecimalPlaces(double standardDeviation) { // Setup const int numberOfDecimalPlaces = 2; var distribution = new NormalDistribution(numberOfDecimalPlaces); // Call distribution.StandardDeviation = (RoundedDouble) standardDeviation; // Assert Assert.AreEqual(numberOfDecimalPlaces, distribution.StandardDeviation.NumberOfDecimalPlaces); Assert.AreEqual(new RoundedDouble(numberOfDecimalPlaces, standardDeviation), distribution.StandardDeviation); } [Test] [TestCase(-4)] [TestCase(0 - 1e-2)] public void StandardDeviation_SettingToLessThan0_ThrowArgumentOutOfRangeException(double standardDeviation) { // Setup var distribution = new NormalDistribution(2); // Call TestDelegate call = () => distribution.StandardDeviation = (RoundedDouble) standardDeviation; // Assert const string expectedMessage = "Standaardafwijking (\u03C3) moet groter zijn dan of gelijk zijn aan 0."; TestHelper.AssertThrowsArgumentExceptionAndTestMessage(call, expectedMessage); } [Test] public void Clone_Always_ReturnNewInstanceWithCopiedValues() { // Setup var random = new Random(21); var original = new NormalDistribution(random.Next(1, 16)) { Mean = random.NextRoundedDouble(), StandardDeviation = random.NextRoundedDouble() }; // Call object clone = original.Clone(); // Assert CoreCloneAssert.AreObjectClones(original, clone, DistributionAssert.AreEqual); } [TestFixture] private class NormalDistributionEqualsTest : EqualsGuidelinesTestFixture { protected override NormalDistribution CreateObject() { return CreateFullyDefinedDistribution(); } protected override DerivedNormalDistribution CreateDerivedObject() { NormalDistribution baseDistribution = CreateFullyDefinedDistribution(); return new DerivedNormalDistribution(baseDistribution); } private static IEnumerable GetUnequalTestCases() { NormalDistribution otherMean = CreateFullyDefinedDistribution(); otherMean.Mean = (RoundedDouble) 987; yield return new TestCaseData(otherMean) .SetName(nameof(otherMean)); NormalDistribution otherStandardDeviation = CreateFullyDefinedDistribution(); otherStandardDeviation.StandardDeviation = (RoundedDouble) 0.987; yield return new TestCaseData(otherStandardDeviation) .SetName(nameof(otherStandardDeviation)); } private static NormalDistribution CreateFullyDefinedDistribution() { return new NormalDistribution(5) { Mean = (RoundedDouble) 1, StandardDeviation = (RoundedDouble) 0.1 }; } } private class DerivedNormalDistribution : NormalDistribution { public DerivedNormalDistribution(NormalDistribution distribution) { Mean = distribution.Mean; StandardDeviation = distribution.StandardDeviation; } } } }