Index: Riskeer/Integration/src/Riskeer.Integration.Plugin/RiskeerPlugin.cs =================================================================== diff -u -r2191ded5c78a5fa73d21d2e9e2dbf55555a8b89d -r73490911ea4680b448ddaa754d67f9eb881bdb8a --- Riskeer/Integration/src/Riskeer.Integration.Plugin/RiskeerPlugin.cs (.../RiskeerPlugin.cs) (revision 2191ded5c78a5fa73d21d2e9e2dbf55555a8b89d) +++ Riskeer/Integration/src/Riskeer.Integration.Plugin/RiskeerPlugin.cs (.../RiskeerPlugin.cs) (revision 73490911ea4680b448ddaa754d67f9eb881bdb8a) @@ -1812,7 +1812,8 @@ return new object[] { new PipingFailurePathContext(assessmentSection.Piping, assessmentSection), - new GrassCoverErosionInwardsFailurePathContext(assessmentSection.GrassCoverErosionInwards, assessmentSection) + new GrassCoverErosionInwardsFailurePathContext(assessmentSection.GrassCoverErosionInwards, assessmentSection), + new MacroStabilityInwardsFailurePathContext(assessmentSection.MacroStabilityInwards, assessmentSection) }; } Index: Riskeer/Integration/test/Riskeer.Integration.Plugin.Test/TreeNodeInfos/FailurePathsStateRootContextTreeNodeInfoTest.cs =================================================================== diff -u -r142c3fc561cfd9a2f53fe73052989655095087d8 -r73490911ea4680b448ddaa754d67f9eb881bdb8a --- Riskeer/Integration/test/Riskeer.Integration.Plugin.Test/TreeNodeInfos/FailurePathsStateRootContextTreeNodeInfoTest.cs (.../FailurePathsStateRootContextTreeNodeInfoTest.cs) (revision 142c3fc561cfd9a2f53fe73052989655095087d8) +++ Riskeer/Integration/test/Riskeer.Integration.Plugin.Test/TreeNodeInfos/FailurePathsStateRootContextTreeNodeInfoTest.cs (.../FailurePathsStateRootContextTreeNodeInfoTest.cs) (revision 73490911ea4680b448ddaa754d67f9eb881bdb8a) @@ -33,6 +33,7 @@ using Riskeer.GrassCoverErosionInwards.Forms.PresentationObjects; using Riskeer.Integration.Data; using Riskeer.Integration.Forms.PresentationObjects; +using Riskeer.MacroStabilityInwards.Forms.PresentationObjects; using Riskeer.Piping.Forms.PresentationObjects; using RiskeerIntegrationFormsResources = Riskeer.Integration.Forms.Properties.Resources; @@ -163,7 +164,7 @@ Assert.AreEqual("Faalpaden", failurePathsFolder.Name); Assert.AreEqual(TreeFolderCategory.General, failurePathsFolder.Category); - Assert.AreEqual(2, failurePathsFolder.Contents.Count()); + Assert.AreEqual(3, failurePathsFolder.Contents.Count()); var pipingFailurePathContext = (PipingFailurePathContext) failurePathsFolder.Contents.ElementAt(0); Assert.AreSame(assessmentSection.Piping, pipingFailurePathContext.WrappedData); Assert.AreSame(assessmentSection, pipingFailurePathContext.Parent); @@ -172,6 +173,10 @@ Assert.AreSame(assessmentSection.GrassCoverErosionInwards, grassCoverErosionInwardsFailurePathContext.WrappedData); Assert.AreSame(assessmentSection, grassCoverErosionInwardsFailurePathContext.Parent); + var macroStabilityInwardsFailurePathContext = (MacroStabilityInwardsFailurePathContext) failurePathsFolder.Contents.ElementAt(2); + Assert.AreSame(assessmentSection.MacroStabilityInwards, macroStabilityInwardsFailurePathContext.WrappedData); + Assert.AreSame(assessmentSection, macroStabilityInwardsFailurePathContext.Parent); + var assemblyResultsContext = (AssemblyResultsContext) objects[1]; Assert.AreSame(assessmentSection, assemblyResultsContext.WrappedData); }