Index: Riskeer/Integration/src/Riskeer.Integration.Plugin/RiskeerPlugin.cs =================================================================== diff -u -rdc11660d9e7178e2132387f7ed8f16984f2eb712 -r8d0653c8f01d7f271fc57008de77abb4feb39b34 --- Riskeer/Integration/src/Riskeer.Integration.Plugin/RiskeerPlugin.cs (.../RiskeerPlugin.cs) (revision dc11660d9e7178e2132387f7ed8f16984f2eb712) +++ Riskeer/Integration/src/Riskeer.Integration.Plugin/RiskeerPlugin.cs (.../RiskeerPlugin.cs) (revision 8d0653c8f01d7f271fc57008de77abb4feb39b34) @@ -1811,7 +1811,8 @@ new MacroStabilityInwardsFailurePathContext(assessmentSection.MacroStabilityInwards, assessmentSection), new StabilityStoneCoverFailurePathContext(assessmentSection.StabilityStoneCover, assessmentSection), new WaveImpactAsphaltCoverFailurePathContext(assessmentSection.WaveImpactAsphaltCover, assessmentSection), - new GrassCoverErosionOutwardsFailurePathContext(assessmentSection.GrassCoverErosionOutwards, assessmentSection) + new GrassCoverErosionOutwardsFailurePathContext(assessmentSection.GrassCoverErosionOutwards, assessmentSection), + new HeightStructuresFailurePathContext(assessmentSection.HeightStructures, assessmentSection) }; } Index: Riskeer/Integration/test/Riskeer.Integration.Plugin.Test/TreeNodeInfos/FailurePathsStateRootContextTreeNodeInfoTest.cs =================================================================== diff -u -rdc11660d9e7178e2132387f7ed8f16984f2eb712 -r8d0653c8f01d7f271fc57008de77abb4feb39b34 --- Riskeer/Integration/test/Riskeer.Integration.Plugin.Test/TreeNodeInfos/FailurePathsStateRootContextTreeNodeInfoTest.cs (.../FailurePathsStateRootContextTreeNodeInfoTest.cs) (revision dc11660d9e7178e2132387f7ed8f16984f2eb712) +++ Riskeer/Integration/test/Riskeer.Integration.Plugin.Test/TreeNodeInfos/FailurePathsStateRootContextTreeNodeInfoTest.cs (.../FailurePathsStateRootContextTreeNodeInfoTest.cs) (revision 8d0653c8f01d7f271fc57008de77abb4feb39b34) @@ -32,6 +32,7 @@ using Riskeer.Common.Forms.PresentationObjects; using Riskeer.GrassCoverErosionInwards.Forms.PresentationObjects; using Riskeer.GrassCoverErosionOutwards.Forms.PresentationObjects; +using Riskeer.HeightStructures.Forms.PresentationObjects; using Riskeer.Integration.Data; using Riskeer.Integration.Forms.PresentationObjects; using Riskeer.MacroStabilityInwards.Forms.PresentationObjects; @@ -167,7 +168,7 @@ Assert.AreEqual("Faalpaden", failurePathsFolder.Name); Assert.AreEqual(TreeFolderCategory.General, failurePathsFolder.Category); - Assert.AreEqual(6, failurePathsFolder.Contents.Count()); + Assert.AreEqual(7, failurePathsFolder.Contents.Count()); var pipingFailurePathContext = (PipingFailurePathContext) failurePathsFolder.Contents.ElementAt(0); Assert.AreSame(assessmentSection.Piping, pipingFailurePathContext.WrappedData); Assert.AreSame(assessmentSection, pipingFailurePathContext.Parent); @@ -192,6 +193,10 @@ Assert.AreSame(assessmentSection.GrassCoverErosionOutwards, grassCoverErosionOutwardsFailurePathContext.WrappedData); Assert.AreSame(assessmentSection, grassCoverErosionOutwardsFailurePathContext.Parent); + var heightStructuresFailurePathContext = (HeightStructuresFailurePathContext) failurePathsFolder.Contents.ElementAt(6); + Assert.AreSame(assessmentSection.HeightStructures, heightStructuresFailurePathContext.WrappedData); + Assert.AreSame(assessmentSection, heightStructuresFailurePathContext.Parent); + var assemblyResultsContext = (AssemblyResultsContext) objects[1]; Assert.AreSame(assessmentSection, assemblyResultsContext.WrappedData); }