Index: Ringtoets/Common/test/Ringtoets.Common.Forms.Test/PresentationObjects/SelectedTopLevelFaultTreeIllustrationPointTest.cs =================================================================== diff -u -rc072c430cf3193c3ada31a81bd0cd4e75f4a068a -r390c486bb4cd693ae2f2eaf82a30efcb51480048 --- Ringtoets/Common/test/Ringtoets.Common.Forms.Test/PresentationObjects/SelectedTopLevelFaultTreeIllustrationPointTest.cs (.../SelectedTopLevelFaultTreeIllustrationPointTest.cs) (revision c072c430cf3193c3ada31a81bd0cd4e75f4a068a) +++ Ringtoets/Common/test/Ringtoets.Common.Forms.Test/PresentationObjects/SelectedTopLevelFaultTreeIllustrationPointTest.cs (.../SelectedTopLevelFaultTreeIllustrationPointTest.cs) (revision 390c486bb4cd693ae2f2eaf82a30efcb51480048) @@ -48,7 +48,7 @@ public void Constructor_ClosingSituationsNull_ThrowsArgumentNullException() { // Call - TestDelegate call = () => new SelectedTopLevelFaultTreeIllustrationPoint(CreateTopLevelSubMechanismIllustrationPoint(), + TestDelegate call = () => new SelectedTopLevelFaultTreeIllustrationPoint(CreateTopLevelFaultTreeIllustrationPoint(), null); // Assert @@ -60,19 +60,19 @@ public void Constructor_ValidArguments_ReturnsExpectedValues() { // Setup - TopLevelFaultTreeIllustrationPoint topLevelFaultTreeIllustrationPoint = CreateTopLevelSubMechanismIllustrationPoint(); + TopLevelFaultTreeIllustrationPoint topLevelFaultTreeIllustrationPoint = CreateTopLevelFaultTreeIllustrationPoint(); IEnumerable closingSituations = Enumerable.Empty(); // Call var selectedTopLevelFaultTreeIllustrationPoint = new SelectedTopLevelFaultTreeIllustrationPoint(topLevelFaultTreeIllustrationPoint, - closingSituations); + closingSituations); // Assert Assert.AreSame(topLevelFaultTreeIllustrationPoint, selectedTopLevelFaultTreeIllustrationPoint.TopLevelFaultTreeIllustrationPoint); Assert.AreSame(closingSituations, selectedTopLevelFaultTreeIllustrationPoint.ClosingSituations); } - private static TopLevelFaultTreeIllustrationPoint CreateTopLevelSubMechanismIllustrationPoint() + private static TopLevelFaultTreeIllustrationPoint CreateTopLevelFaultTreeIllustrationPoint() { return new TopLevelFaultTreeIllustrationPoint(WindDirectionTestFactory.CreateTestWindDirection(), "Closing situation",