Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/Writers/StructureCalculationConfigurationWriterTest.cs =================================================================== diff -u -r8963d5e5c4a22feba25c4e936e6b67de7104cccd -reeac9fe0e250075e6e95683e4781b7b96ddc178c --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/Writers/StructureCalculationConfigurationWriterTest.cs (.../StructureCalculationConfigurationWriterTest.cs) (revision 8963d5e5c4a22feba25c4e936e6b67de7104cccd) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/Writers/StructureCalculationConfigurationWriterTest.cs (.../StructureCalculationConfigurationWriterTest.cs) (revision eeac9fe0e250075e6e95683e4781b7b96ddc178c) @@ -109,35 +109,35 @@ { return new SimpleStructuresCalculationConfiguration(name) { - AllowedLevelIncreaseStorage = new MeanStandardDeviationStochastConfiguration + AllowedLevelIncreaseStorage = new StochastConfiguration { Mean = 1.2, StandardDeviation = 3.4 }, - CriticalOvertoppingDischarge = new MeanVariationCoefficientStochastConfiguration + CriticalOvertoppingDischarge = new StochastConfiguration { Mean = 22.2, VariationCoefficient = 2.1 }, FailureProbabilityStructureWithErosion = 2.1, - FlowWidthAtBottomProtection = new MeanStandardDeviationStochastConfiguration + FlowWidthAtBottomProtection = new StochastConfiguration { Mean = 5.4, StandardDeviation = 1.1 }, ForeshoreProfileName = "Voorland", HydraulicBoundaryLocationName = "Randvoorwaardelocatie", - ModelFactorSuperCriticalFlow = new MeanStandardDeviationStochastConfiguration + ModelFactorSuperCriticalFlow = new StochastConfiguration { Mean = 322.2, StandardDeviation = 91.2 }, - StorageStructureArea = new MeanVariationCoefficientStochastConfiguration + StorageStructureArea = new StochastConfiguration { Mean = 11.122, VariationCoefficient = 32.111 }, - StormDuration = new MeanVariationCoefficientStochastConfiguration + StormDuration = new StochastConfiguration { Mean = 21.22, VariationCoefficient = 1.2 @@ -151,7 +151,7 @@ BreakWaterHeight = 111111.2, UseForeshoreProfile = true }, - WidthFlowApertures = new MeanStandardDeviationStochastConfiguration + WidthFlowApertures = new StochastConfiguration { Mean = 121.3, StandardDeviation = 222.1 @@ -190,7 +190,7 @@ { if (writeExtraParameterAndStochast) { - writer.WriteDistribution("testStochastName", new MeanStandardDeviationStochastConfiguration()); + writer.WriteDistribution("testStochastName", new StochastConfiguration()); } } }