Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/Hydraulics/IllustrationPoints/GeneralResultTest.cs =================================================================== diff -u -r853509ec4de49576e9627ec0bf148aa32e04e461 -rd2515239c7d6aead278d42e54d296bf42bfd3e92 --- Ringtoets/Common/test/Ringtoets.Common.Data.Test/Hydraulics/IllustrationPoints/GeneralResultTest.cs (.../GeneralResultTest.cs) (revision 853509ec4de49576e9627ec0bf148aa32e04e461) +++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/Hydraulics/IllustrationPoints/GeneralResultTest.cs (.../GeneralResultTest.cs) (revision d2515239c7d6aead278d42e54d296bf42bfd3e92) @@ -35,8 +35,7 @@ public void Constructor_WindDirectionNull_ThrowsArgumentNullException() { // Call - TestDelegate call = () => new GeneralResult(0, - null, + TestDelegate call = () => new GeneralResult(null, Enumerable.Empty(), Enumerable.Empty()); @@ -52,8 +51,7 @@ var windDirection = new TestWindDirection(); // Call - TestDelegate call = () => new GeneralResult(0, - windDirection, + TestDelegate call = () => new GeneralResult(windDirection, null, Enumerable.Empty()); @@ -69,8 +67,7 @@ var windDirection = new TestWindDirection(); // Call - TestDelegate call = () => new GeneralResult(0, - windDirection, + TestDelegate call = () => new GeneralResult(windDirection, Enumerable.Empty(), null); @@ -83,18 +80,15 @@ public void Constructor_ValidArguments_ExpectedProperties() { // Setup - var random = new Random(12); - double beta = random.NextDouble(); var windDirection = new TestWindDirection(); IEnumerable stochasts = Enumerable.Empty(); IEnumerable combinations = Enumerable.Empty(); // Call - var generalResult = new GeneralResult(beta, windDirection, stochasts, combinations); + var generalResult = new GeneralResult(windDirection, stochasts, combinations); // Assert - Assert.AreEqual(beta, generalResult.Beta); Assert.AreSame(windDirection, generalResult.GoverningWindDirection); Assert.AreSame(stochasts, generalResult.Stochasts); Assert.AreSame(combinations, generalResult.WindDirectionClosingSituationIllustrationPoints);