Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/IllustrationPoints/SubMechanismIllustrationPointCreateExtensionsTest.cs =================================================================== diff -u -rb7988d7a5616c8c305dac4419a15d5eda07e88bc -r1f8455066f5be4241f587c34283f1d7f8a85f78e --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/IllustrationPoints/SubMechanismIllustrationPointCreateExtensionsTest.cs (.../SubMechanismIllustrationPointCreateExtensionsTest.cs) (revision b7988d7a5616c8c305dac4419a15d5eda07e88bc) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/IllustrationPoints/SubMechanismIllustrationPointCreateExtensionsTest.cs (.../SubMechanismIllustrationPointCreateExtensionsTest.cs) (revision 1f8455066f5be4241f587c34283f1d7f8a85f78e) @@ -53,9 +53,9 @@ const string illustrationPointName = "Illustration point name"; double beta = random.NextDouble(); var illustrationPoint = new SubMechanismIllustrationPoint(illustrationPointName, - Enumerable.Empty(), - Enumerable.Empty(), - beta); + beta, + Enumerable.Empty(), + Enumerable.Empty()); // Call SubMechanismIllustrationPointEntity entity = illustrationPoint.CreateSubMechanismIllustrationPointEntity(); @@ -95,9 +95,9 @@ const string illustrationPointName = "Illustration point name"; double beta = random.NextDouble(); var illustrationPoint = new SubMechanismIllustrationPoint(illustrationPointName, - stochasts, - Enumerable.Empty(), - beta); + beta, + stochasts, + Enumerable.Empty()); // Call SubMechanismIllustrationPointEntity entity = illustrationPoint.CreateSubMechanismIllustrationPointEntity(); @@ -143,9 +143,9 @@ double beta = random.NextDouble(); var illustrationPoint = new SubMechanismIllustrationPoint(illustrationPointName, - Enumerable.Empty(), - illustrationPointResults, - beta); + beta, + Enumerable.Empty(), + illustrationPointResults); // Call SubMechanismIllustrationPointEntity entity = illustrationPoint.CreateSubMechanismIllustrationPointEntity();