Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Plugin.Test/HeightStructuresPluginTest.cs =================================================================== diff -u -r7a0eb8b2709b5c13d4711701213826b9cbd5aafe -rd499bba7f0abdb8481bfe1ffc619414116a13121 --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Plugin.Test/HeightStructuresPluginTest.cs (.../HeightStructuresPluginTest.cs) (revision 7a0eb8b2709b5c13d4711701213826b9cbd5aafe) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Plugin.Test/HeightStructuresPluginTest.cs (.../HeightStructuresPluginTest.cs) (revision d499bba7f0abdb8481bfe1ffc619414116a13121) @@ -60,7 +60,7 @@ PropertyInfo[] propertyInfos = plugin.GetPropertyInfos().ToArray(); // assert - Assert.AreEqual(2, propertyInfos.Length); + Assert.AreEqual(3, propertyInfos.Length); PropertyInfo failureMechanismContextProperties = PluginTestHelper.AssertPropertyInfoDefined( propertyInfos, typeof(HeightStructuresFailureMechanismContext), @@ -76,6 +76,14 @@ Assert.IsNull(heightStructuresInputContextProperties.AdditionalDataCheck); Assert.IsNull(heightStructuresInputContextProperties.GetObjectPropertiesData); Assert.IsNull(heightStructuresInputContextProperties.AfterCreate); + + PropertyInfo heightStructureProperties = PluginTestHelper.AssertPropertyInfoDefined( + propertyInfos, + typeof(HeightStructure), + typeof(HeightStructureProperties)); + Assert.IsNull(heightStructureProperties.AdditionalDataCheck); + Assert.IsNull(heightStructureProperties.GetObjectPropertiesData); + Assert.IsNull(heightStructureProperties.AfterCreate); } }