Index: Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Forms/PropertyClasses/StabilityPointStructuresInputContextProperties.cs =================================================================== diff -u -r6c1eebbcec2bbe38093be8b1df1e683e50dfe3a5 -r8eb665f17623b147f8b95fd610fa750cfba4857e --- Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Forms/PropertyClasses/StabilityPointStructuresInputContextProperties.cs (.../StabilityPointStructuresInputContextProperties.cs) (revision 6c1eebbcec2bbe38093be8b1df1e683e50dfe3a5) +++ Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Forms/PropertyClasses/StabilityPointStructuresInputContextProperties.cs (.../StabilityPointStructuresInputContextProperties.cs) (revision 8eb665f17623b147f8b95fd610fa750cfba4857e) @@ -173,7 +173,7 @@ #endregion - #region Model factors + # region Model factors and critical values [PropertyOrder(drainCoefficientPropertyIndex)] [TypeConverter(typeof(ExpandableObjectConverter))] @@ -210,7 +210,7 @@ [PropertyOrder(flowVelocityStructureClosablePropertyIndex)] [TypeConverter(typeof(ExpandableObjectConverter))] - [ResourcesCategory(typeof(RingtoetsCommonFormsResources), "Categories_ModelSettings")] + [ResourcesCategory(typeof(RingtoetsCommonFormsResources), "Categories_CriticalValues")] [ResourcesDisplayName(typeof(Resources), "Structure_FlowVelocityStructureClosable_DisplayName")] [ResourcesDescription(typeof(Resources), "Structure_FlowVelocityStructureClosable_Description")] public NormalDistributionProperties FlowVelocityStructureClosable Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Forms.Test/PropertyClasses/StabilityPointStructuresInputContextPropertiesTest.cs =================================================================== diff -u -r3bef7fd465344746e2af6b4da8bf94d909fa9208 -r8eb665f17623b147f8b95fd610fa750cfba4857e --- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Forms.Test/PropertyClasses/StabilityPointStructuresInputContextPropertiesTest.cs (.../StabilityPointStructuresInputContextPropertiesTest.cs) (revision 3bef7fd465344746e2af6b4da8bf94d909fa9208) +++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Forms.Test/PropertyClasses/StabilityPointStructuresInputContextPropertiesTest.cs (.../StabilityPointStructuresInputContextPropertiesTest.cs) (revision 8eb665f17623b147f8b95fd610fa750cfba4857e) @@ -515,6 +515,7 @@ const string schematizationCategory = "Schematisatie"; const string hydraulicDataCategory = "Hydraulische gegevens"; const string modelSettingsCategory = "Modelinstellingen"; + const string criticalValuesCategory = "Kritieke waarden"; var dynamicPropertyBag = new DynamicPropertyBag(properties); PropertyDescriptorCollection dynamicProperties = dynamicPropertyBag.GetProperties(new Attribute[] @@ -543,7 +544,7 @@ PropertyDescriptor flowVelocityStructureClosableProperty = dynamicProperties[flowVelocityStructureClosablePropertyIndex]; Assert.IsInstanceOf(flowVelocityStructureClosableProperty.Converter); - Assert.AreEqual(modelSettingsCategory, flowVelocityStructureClosableProperty.Category); + Assert.AreEqual(criticalValuesCategory, flowVelocityStructureClosableProperty.Category); Assert.AreEqual("Kritieke stroomsnelheid sluiting eerste keermiddel [m/s]", flowVelocityStructureClosableProperty.DisplayName); Assert.AreEqual("Stroomsnelheid waarbij na aanvaring het eerste keermiddel nog net kan worden gesloten.", flowVelocityStructureClosableProperty.Description);