Index: Ringtoets/Common/test/Ringtoets.Common.Data.Test/Hydraulics/IllustrationPoints/GeneralResultTest.cs =================================================================== diff -u -rd2515239c7d6aead278d42e54d296bf42bfd3e92 -reb404dacf85af00969cfd2b64da6e630b2c49ba4 --- Ringtoets/Common/test/Ringtoets.Common.Data.Test/Hydraulics/IllustrationPoints/GeneralResultTest.cs (.../GeneralResultTest.cs) (revision d2515239c7d6aead278d42e54d296bf42bfd3e92) +++ Ringtoets/Common/test/Ringtoets.Common.Data.Test/Hydraulics/IllustrationPoints/GeneralResultTest.cs (.../GeneralResultTest.cs) (revision eb404dacf85af00969cfd2b64da6e630b2c49ba4) @@ -37,7 +37,7 @@ // Call TestDelegate call = () => new GeneralResult(null, Enumerable.Empty(), - Enumerable.Empty()); + Enumerable.Empty()); // Assert string paramName = Assert.Throws(call).ParamName; @@ -53,15 +53,15 @@ // Call TestDelegate call = () => new GeneralResult(windDirection, null, - Enumerable.Empty()); + Enumerable.Empty()); // Assert string paramName = Assert.Throws(call).ParamName; Assert.AreEqual("stochasts", paramName); } [Test] - public void Constructor_WindDirectionClosingScenarioIllustrationPointsNull_ThrowsArgumentNullException() + public void Constructor_TopLevelSubmechanismIllustrationPointsNull_ThrowsArgumentNullException() { // Setup var windDirection = new TestWindDirection(); @@ -73,7 +73,7 @@ // Assert string paramName = Assert.Throws(call).ParamName; - Assert.AreEqual("windDirectionClosingSituationIllustrationPoints", paramName); + Assert.AreEqual("topLevelSubmechanismIllustrationPoints", paramName); } [Test] @@ -82,16 +82,16 @@ // Setup var windDirection = new TestWindDirection(); IEnumerable stochasts = Enumerable.Empty(); - IEnumerable combinations = - Enumerable.Empty(); + IEnumerable combinations = + Enumerable.Empty(); // Call var generalResult = new GeneralResult(windDirection, stochasts, combinations); // Assert Assert.AreSame(windDirection, generalResult.GoverningWindDirection); Assert.AreSame(stochasts, generalResult.Stochasts); - Assert.AreSame(combinations, generalResult.WindDirectionClosingSituationIllustrationPoints); + Assert.AreSame(combinations, generalResult.TopLevelSubmechanismIllustrationPoints); } } } \ No newline at end of file