Index: Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Data.TestUtil/ClosingStructuresTestDataGenerator.cs =================================================================== diff -u -r38cd5da3aefa4ea677c2b1796cbb9b831d41fe3c -r77d16d69142a5b2152496b544d61340eeb474b1f --- Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Data.TestUtil/ClosingStructuresTestDataGenerator.cs (.../ClosingStructuresTestDataGenerator.cs) (revision 38cd5da3aefa4ea677c2b1796cbb9b831d41fe3c) +++ Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Data.TestUtil/ClosingStructuresTestDataGenerator.cs (.../ClosingStructuresTestDataGenerator.cs) (revision 77d16d69142a5b2152496b544d61340eeb474b1f) @@ -47,6 +47,11 @@ StandardDeviation = random.NextRoundedDouble() }; + input.ModelFactorSuperCriticalFlow = new NormalDistribution + { + Mean = random.NextRoundedDouble() + }; + input.DrainCoefficient = new NormalDistribution { Mean = random.NextRoundedDouble() Index: Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/CommonTestDataGenerator.cs =================================================================== diff -u -r339e1d134a2208f180b9f369d275cb98f9736a7c -r77d16d69142a5b2152496b544d61340eeb474b1f --- Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/CommonTestDataGenerator.cs (.../CommonTestDataGenerator.cs) (revision 339e1d134a2208f180b9f369d275cb98f9736a7c) +++ Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/CommonTestDataGenerator.cs (.../CommonTestDataGenerator.cs) (revision 77d16d69142a5b2152496b544d61340eeb474b1f) @@ -43,11 +43,6 @@ { var random = new Random(21); - input.ModelFactorSuperCriticalFlow = new NormalDistribution - { - Mean = random.NextRoundedDouble() - }; - input.AllowedLevelIncreaseStorage = new LogNormalDistribution { Mean = random.NextRoundedDouble(), Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.TestUtil/HeightStructuresTestDataGenerator.cs =================================================================== diff -u -r63d772846c8c1b000866a9b981e0890d34b63104 -r77d16d69142a5b2152496b544d61340eeb474b1f --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.TestUtil/HeightStructuresTestDataGenerator.cs (.../HeightStructuresTestDataGenerator.cs) (revision 63d772846c8c1b000866a9b981e0890d34b63104) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.TestUtil/HeightStructuresTestDataGenerator.cs (.../HeightStructuresTestDataGenerator.cs) (revision 77d16d69142a5b2152496b544d61340eeb474b1f) @@ -40,12 +40,19 @@ var random = new Random(21); input.Structure = new TestHeightStructure(); + + input.DeviationWaveDirection = random.NextRoundedDouble(); + + input.ModelFactorSuperCriticalFlow = new NormalDistribution + { + Mean = random.NextRoundedDouble() + }; + input.LevelCrestStructure = new NormalDistribution { Mean = random.NextRoundedDouble(), StandardDeviation = random.NextRoundedDouble() }; - input.DeviationWaveDirection = random.NextRoundedDouble(); CommonTestDataGenerator.SetRandomDataToStructuresInput(input); }