Index: Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Data.Test/ClosingStructuresInputTest.cs =================================================================== diff -u -r25b4c6adf1c80f2e25a69a172679362938dc8efb -r2cac288356ca446c45385a83ebd1a032fb155283 --- Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Data.Test/ClosingStructuresInputTest.cs (.../ClosingStructuresInputTest.cs) (revision 25b4c6adf1c80f2e25a69a172679362938dc8efb) +++ Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Data.Test/ClosingStructuresInputTest.cs (.../ClosingStructuresInputTest.cs) (revision 2cac288356ca446c45385a83ebd1a032fb155283) @@ -58,6 +58,12 @@ StandardDeviation = RoundedDouble.NaN }; + var expectedModelFactorSuperCriticalFlow = new NormalDistribution(2) + { + Mean = (RoundedDouble) 1.1, + StandardDeviation = (RoundedDouble) 0.05 + }; + var expectedDrainCoefficient = new NormalDistribution(2) { Mean = (RoundedDouble) 1, @@ -81,7 +87,9 @@ Mean = RoundedDouble.NaN, StandardDeviation = RoundedDouble.NaN }; + DistributionAssert.AreEqual(expectedInsideWaterLevel, input.InsideWaterLevel); + DistributionAssert.AreEqual(expectedModelFactorSuperCriticalFlow, input.ModelFactorSuperCriticalFlow); DistributionAssert.AreEqual(expectedDrainCoefficient, input.DrainCoefficient); DistributionAssert.AreEqual(expectedThresholdHeightOpenWeir, input.ThresholdHeightOpenWeir); DistributionAssert.AreEqual(expectedAreaFlowApertures, input.AreaFlowApertures); Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/Structures/StructuresInputBaseTest.cs =================================================================== diff -u -r3257a53186739aa9e83990a4581d957879df4692 -r2cac288356ca446c45385a83ebd1a032fb155283 --- Ringtoets/Common/test/Ringtoets.Common.Data.Test/Structures/StructuresInputBaseTest.cs (.../StructuresInputBaseTest.cs) (revision 3257a53186739aa9e83990a4581d957879df4692) +++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/Structures/StructuresInputBaseTest.cs (.../StructuresInputBaseTest.cs) (revision 2cac288356ca446c45385a83ebd1a032fb155283) @@ -66,12 +66,6 @@ Assert.IsFalse(input.UseForeshore); CollectionAssert.IsEmpty(input.ForeshoreGeometry); - var expectedModelFactorSuperCriticalFlow = new NormalDistribution(2) - { - Mean = (RoundedDouble) 1.1, - StandardDeviation = (RoundedDouble) 0.05 - }; - var expectedAllowedLevelIncreaseStorage = new LogNormalDistribution(2) { Mean = RoundedDouble.NaN, @@ -108,7 +102,6 @@ CoefficientOfVariation = (RoundedDouble) 0.25 }; - DistributionAssert.AreEqual(expectedModelFactorSuperCriticalFlow, input.ModelFactorSuperCriticalFlow); DistributionAssert.AreEqual(expectedAllowedLevelIncreaseStorage, input.AllowedLevelIncreaseStorage); DistributionAssert.AreEqual(expectedStorageStructureArea, input.StorageStructureArea); DistributionAssert.AreEqual(expectedFlowWidthAtBottomProtection, input.FlowWidthAtBottomProtection); Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructuresInputTest.cs =================================================================== diff -u -rc1bb09f8fce943d069316e4d9bac7c85aca50c58 -r2cac288356ca446c45385a83ebd1a032fb155283 --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructuresInputTest.cs (.../HeightStructuresInputTest.cs) (revision c1bb09f8fce943d069316e4d9bac7c85aca50c58) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructuresInputTest.cs (.../HeightStructuresInputTest.cs) (revision 2cac288356ca446c45385a83ebd1a032fb155283) @@ -44,11 +44,19 @@ // Assert Assert.IsInstanceOf>(input); + var expectedModelFactorSuperCriticalFlow = new NormalDistribution(2) + { + Mean = (RoundedDouble) 1.1, + StandardDeviation = (RoundedDouble) 0.05 + }; + var expectedLevelCrestStructure = new NormalDistribution(2) { Mean = RoundedDouble.NaN, StandardDeviation = RoundedDouble.NaN }; + + DistributionAssert.AreEqual(expectedModelFactorSuperCriticalFlow, input.ModelFactorSuperCriticalFlow); DistributionAssert.AreEqual(expectedLevelCrestStructure, input.LevelCrestStructure); Assert.AreEqual(2, input.DeviationWaveDirection.NumberOfDecimalPlaces);