Index: Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Plugin/StabilityPointStructuresPlugin.cs =================================================================== diff -u -r1a49563c568eaef8b84743fec1f04ee119bf5c9c -r960caf730560a10eb725d31f3e796c371523ef53 --- Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Plugin/StabilityPointStructuresPlugin.cs (.../StabilityPointStructuresPlugin.cs) (revision 1a49563c568eaef8b84743fec1f04ee119bf5c9c) +++ Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Plugin/StabilityPointStructuresPlugin.cs (.../StabilityPointStructuresPlugin.cs) (revision 960caf730560a10eb725d31f3e796c371523ef53) @@ -245,6 +245,7 @@ return new object[] { new FailureMechanismSectionsContext(failureMechanism, assessmentSection), + new ForeshoreProfilesContext(failureMechanism.ForeshoreProfiles, assessmentSection), new StabilityPointStructuresContext(failureMechanism.StabilityPointStructures, assessmentSection), new CommentContext(failureMechanism) }; Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Forms.Test/TreeNodeInfos/StabilityPointStructuresFailureMechanismContextTreeNodeInfoTest.cs =================================================================== diff -u -r968cbe97d1a910b9bbb0fb52b22ece65126ed675 -r960caf730560a10eb725d31f3e796c371523ef53 --- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Forms.Test/TreeNodeInfos/StabilityPointStructuresFailureMechanismContextTreeNodeInfoTest.cs (.../StabilityPointStructuresFailureMechanismContextTreeNodeInfoTest.cs) (revision 968cbe97d1a910b9bbb0fb52b22ece65126ed675) +++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Forms.Test/TreeNodeInfos/StabilityPointStructuresFailureMechanismContextTreeNodeInfoTest.cs (.../StabilityPointStructuresFailureMechanismContextTreeNodeInfoTest.cs) (revision 960caf730560a10eb725d31f3e796c371523ef53) @@ -114,16 +114,21 @@ var inputsFolder = (CategoryTreeFolder) children[0]; Assert.AreEqual("Invoer", inputsFolder.Name); Assert.AreEqual(TreeFolderCategory.Input, inputsFolder.Category); - Assert.AreEqual(3, inputsFolder.Contents.Count); + + Assert.AreEqual(4, inputsFolder.Contents.Count); var failureMechanismSectionsContext = (FailureMechanismSectionsContext) inputsFolder.Contents[0]; Assert.AreSame(failureMechanism, failureMechanismSectionsContext.WrappedData); Assert.AreSame(assessmentSectionMock, failureMechanismSectionsContext.ParentAssessmentSection); - var stabilityPointStructuresContext = (StabilityPointStructuresContext) inputsFolder.Contents[1]; + var profilesContext = (ForeshoreProfilesContext)inputsFolder.Contents[1]; + Assert.AreSame(failureMechanism.ForeshoreProfiles, profilesContext.WrappedData); + Assert.AreSame(assessmentSectionMock, profilesContext.ParentAssessmentSection); + + var stabilityPointStructuresContext = (StabilityPointStructuresContext) inputsFolder.Contents[2]; Assert.AreSame(failureMechanism.StabilityPointStructures, stabilityPointStructuresContext.WrappedData); Assert.AreSame(assessmentSectionMock, stabilityPointStructuresContext.AssessmentSection); - var commentContext = (CommentContext) inputsFolder.Contents[2]; + var commentContext = (CommentContext) inputsFolder.Contents[3]; Assert.AreSame(failureMechanism, commentContext.WrappedData); var calculationsFolder = (StabilityPointStructuresCalculationGroupContext) children[1];