Index: Riskeer/MacroStabilityInwards/src/Riskeer.MacroStabilityInwards.Plugin/MacroStabilityInwardsPlugin.cs =================================================================== diff -u -r7c96573ea4b20501c3672249fd3768372b92ca43 -r97d12051b8752e9e45120285fef490fc1f10e8e2 --- Riskeer/MacroStabilityInwards/src/Riskeer.MacroStabilityInwards.Plugin/MacroStabilityInwardsPlugin.cs (.../MacroStabilityInwardsPlugin.cs) (revision 7c96573ea4b20501c3672249fd3768372b92ca43) +++ Riskeer/MacroStabilityInwards/src/Riskeer.MacroStabilityInwards.Plugin/MacroStabilityInwardsPlugin.cs (.../MacroStabilityInwardsPlugin.cs) (revision 97d12051b8752e9e45120285fef490fc1f10e8e2) @@ -78,6 +78,10 @@ { CreateInstance = context => new MacroStabilityInwardsCalculationsProperties(context.WrappedData, context.Parent) }; + yield return new PropertyInfo + { + CreateInstance = context => new MacroStabilityInwardsFailurePathProperties(context.WrappedData, context.Parent) + }; yield return new PropertyInfo { CreateInstance = context => new MacroStabilityInwardsInputContextProperties(context, Index: Riskeer/MacroStabilityInwards/test/Riskeer.MacroStabilityInwards.Plugin.Test/MacroStabilityInwardsPluginTest.cs =================================================================== diff -u -r886b86a66f072735567285a3489923186c236c32 -r97d12051b8752e9e45120285fef490fc1f10e8e2 --- Riskeer/MacroStabilityInwards/test/Riskeer.MacroStabilityInwards.Plugin.Test/MacroStabilityInwardsPluginTest.cs (.../MacroStabilityInwardsPluginTest.cs) (revision 886b86a66f072735567285a3489923186c236c32) +++ Riskeer/MacroStabilityInwards/test/Riskeer.MacroStabilityInwards.Plugin.Test/MacroStabilityInwardsPluginTest.cs (.../MacroStabilityInwardsPluginTest.cs) (revision 97d12051b8752e9e45120285fef490fc1f10e8e2) @@ -67,12 +67,17 @@ PropertyInfo[] propertyInfos = plugin.GetPropertyInfos().ToArray(); // Assert - Assert.AreEqual(9, propertyInfos.Length); + Assert.AreEqual(10, propertyInfos.Length); PluginTestHelper.AssertPropertyInfoDefined( propertyInfos, typeof(MacroStabilityInwardsCalculationsContext), typeof(MacroStabilityInwardsCalculationsProperties)); + + PluginTestHelper.AssertPropertyInfoDefined( + propertyInfos, + typeof(MacroStabilityInwardsFailurePathContext), + typeof(MacroStabilityInwardsFailurePathProperties)); PluginTestHelper.AssertPropertyInfoDefined( propertyInfos,