Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/MacroStabilityInwards/MacroStabilityInwardsCalculationScenarioCreateExtensionsTest.cs =================================================================== diff -u -rb2f4b307c254c747a5cf01d2fb94970e5e954c36 -r11f07beedffdae5eee71141830eb73827dd3ae94 --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/MacroStabilityInwards/MacroStabilityInwardsCalculationScenarioCreateExtensionsTest.cs (.../MacroStabilityInwardsCalculationScenarioCreateExtensionsTest.cs) (revision b2f4b307c254c747a5cf01d2fb94970e5e954c36) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/MacroStabilityInwards/MacroStabilityInwardsCalculationScenarioCreateExtensionsTest.cs (.../MacroStabilityInwardsCalculationScenarioCreateExtensionsTest.cs) (revision 11f07beedffdae5eee71141830eb73827dd3ae94) @@ -225,19 +225,19 @@ { XLeft = random.NextRoundedDouble(), XRight = random.NextRoundedDouble(), - NumberOfHorizontalPoints = random.Next(), + NumberOfHorizontalPoints = random.Next(1, 100), ZTop = random.NextRoundedDouble(), ZBottom = random.NextRoundedDouble(), - NumberOfVerticalPoints = random.Next() + NumberOfVerticalPoints = random.Next(1, 100) }, RightGrid = { XLeft = random.NextRoundedDouble(), XRight = random.NextRoundedDouble(), - NumberOfHorizontalPoints = random.Next(), + NumberOfHorizontalPoints = random.Next(1, 100), ZTop = random.NextRoundedDouble(), ZBottom = random.NextRoundedDouble(), - NumberOfVerticalPoints = random.Next() + NumberOfVerticalPoints = random.Next(1, 100) }, CreateZones = random.NextBoolean() }