Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/HeightStructures/HeightStructuresCalculationEntityReadExtensionsTest.cs =================================================================== diff -u -r46d300b8932314e01403183fa15dc7f7cbdc7fd3 -r1fd2033b78aa540d01635bcf993080e5fe2437bd --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/HeightStructures/HeightStructuresCalculationEntityReadExtensionsTest.cs (.../HeightStructuresCalculationEntityReadExtensionsTest.cs) (revision 46d300b8932314e01403183fa15dc7f7cbdc7fd3) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/HeightStructures/HeightStructuresCalculationEntityReadExtensionsTest.cs (.../HeightStructuresCalculationEntityReadExtensionsTest.cs) (revision 1fd2033b78aa540d01635bcf993080e5fe2437bd) @@ -84,21 +84,21 @@ Comments = comments, UseForeshore = Convert.ToByte(false), UseBreakWater = Convert.ToByte(false), - StructureNormalOrientation = random.GetFromRange(0, 360), - ModelFactorSuperCriticalFlowMean = random.GetFromRange(-9999.9999, 9999.9999), - AllowedLevelIncreaseStorageMean = random.GetFromRange(1e-6, 9999.9999), - AllowedLevelIncreaseStorageStandardDeviation = random.GetFromRange(1e-6, 9999.9999), - FlowWidthAtBottomProtectionMean = random.GetFromRange(1e-6, 9999.9999), - FlowWidthAtBottomProtectionStandardDeviation = random.GetFromRange(1e-6, 9999.9999), - CriticalOvertoppingDischargeMean = random.GetFromRange(1e-6, 9999.9999), - CriticalOvertoppingDischargeCoefficientOfVariation = random.GetFromRange(1e-6, 9999.9999), + StructureNormalOrientation = random.NextDouble(0, 360), + ModelFactorSuperCriticalFlowMean = random.NextDouble(-9999.9999, 9999.9999), + AllowedLevelIncreaseStorageMean = random.NextDouble(1e-6, 9999.9999), + AllowedLevelIncreaseStorageStandardDeviation = random.NextDouble(1e-6, 9999.9999), + FlowWidthAtBottomProtectionMean = random.NextDouble(1e-6, 9999.9999), + FlowWidthAtBottomProtectionStandardDeviation = random.NextDouble(1e-6, 9999.9999), + CriticalOvertoppingDischargeMean = random.NextDouble(1e-6, 9999.9999), + CriticalOvertoppingDischargeCoefficientOfVariation = random.NextDouble(1e-6, 9999.9999), FailureProbabilityStructureWithErosion = random.NextDouble(), - WidthFlowAperturesMean = random.GetFromRange(1e-6, 9999.9999), - WidthFlowAperturesStandardDeviation = random.GetFromRange(1e-6, 9999.9999), - StormDurationMean = random.GetFromRange(1e-6, 9999.9999), - LevelCrestStructureMean = random.GetFromRange(1e-6, 9999.9999), - LevelCrestStructureStandardDeviation = random.GetFromRange(1e-6, 9999.9999), - DeviationWaveDirection = random.GetFromRange(-360, 360) + WidthFlowAperturesMean = random.NextDouble(1e-6, 9999.9999), + WidthFlowAperturesStandardDeviation = random.NextDouble(1e-6, 9999.9999), + StormDurationMean = random.NextDouble(1e-6, 9999.9999), + LevelCrestStructureMean = random.NextDouble(1e-6, 9999.9999), + LevelCrestStructureStandardDeviation = random.NextDouble(1e-6, 9999.9999), + DeviationWaveDirection = random.NextDouble(-360, 360) }; var collector = new ReadConversionCollector();