Index: Ringtoets/Integration/src/Ringtoets.Integration.Plugin/RingtoetsPlugin.cs =================================================================== diff -u -r607f8ecd4700c604fb0dff6486385d94f8b778c1 -rf45e2bcbe092c9b06d66d1df824285b641a1deb4 --- Ringtoets/Integration/src/Ringtoets.Integration.Plugin/RingtoetsPlugin.cs (.../RingtoetsPlugin.cs) (revision 607f8ecd4700c604fb0dff6486385d94f8b778c1) +++ Ringtoets/Integration/src/Ringtoets.Integration.Plugin/RingtoetsPlugin.cs (.../RingtoetsPlugin.cs) (revision f45e2bcbe092c9b06d66d1df824285b641a1deb4) @@ -48,6 +48,7 @@ using Ringtoets.Common.Data.DikeProfiles; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Common.Data.Hydraulics; +using Ringtoets.Common.Data.Hydraulics.IllustrationPoints; using Ringtoets.Common.Data.Probability; using Ringtoets.Common.Forms.ChangeHandlers; using Ringtoets.Common.Forms.GuiServices; @@ -320,6 +321,7 @@ { CreateInstance = context => new ForeshoreProfileCollectionProperties(context.WrappedData) }; + yield return new PropertyInfo(); } /// Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/RingtoetsPluginTest.cs =================================================================== diff -u -r650fc7b43cb6729baee51d079f0377df8d7a3de9 -rf45e2bcbe092c9b06d66d1df824285b641a1deb4 --- Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/RingtoetsPluginTest.cs (.../RingtoetsPluginTest.cs) (revision 650fc7b43cb6729baee51d079f0377df8d7a3de9) +++ Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/RingtoetsPluginTest.cs (.../RingtoetsPluginTest.cs) (revision f45e2bcbe092c9b06d66d1df824285b641a1deb4) @@ -45,6 +45,7 @@ using Ringtoets.Common.Data.DikeProfiles; using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Common.Data.Hydraulics; +using Ringtoets.Common.Data.Hydraulics.IllustrationPoints; using Ringtoets.Common.Data.Probability; using Ringtoets.Common.Forms.PresentationObjects; using Ringtoets.Common.Forms.PropertyClasses; @@ -204,7 +205,7 @@ PropertyInfo[] propertyInfos = plugin.GetPropertyInfos().ToArray(); // Assert - Assert.AreEqual(15, propertyInfos.Length); + Assert.AreEqual(16, propertyInfos.Length); PluginTestHelper.AssertPropertyInfoDefined( propertyInfos, @@ -280,6 +281,11 @@ propertyInfos, typeof(ForeshoreProfilesContext), typeof(ForeshoreProfileCollectionProperties)); + + PluginTestHelper.AssertPropertyInfoDefined( + propertyInfos, + typeof(TopLevelSubMechanismIllustrationPoint), + typeof(TopLevelSubMechanismIllustrationPointProperties)); } }