Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/PropertyClasses/DesignWaterLevelLocationsPropertiesTest.cs =================================================================== diff -u -r1806188dbcb4e704c80abb2fb4fb4c1e76f15435 -r88d14838e27c3a6326f43930800068b939989160 --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/PropertyClasses/DesignWaterLevelLocationsPropertiesTest.cs (.../DesignWaterLevelLocationsPropertiesTest.cs) (revision 1806188dbcb4e704c80abb2fb4fb4c1e76f15435) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/PropertyClasses/DesignWaterLevelLocationsPropertiesTest.cs (.../DesignWaterLevelLocationsPropertiesTest.cs) (revision 88d14838e27c3a6326f43930800068b939989160) @@ -19,7 +19,6 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. -using System.ComponentModel; using System.Linq; using Core.Common.Base; using Core.Common.Base.Data; @@ -36,8 +35,6 @@ [TestFixture] public class DesignWaterLevelLocationsPropertiesTest { - private const int requiredLocationsPropertyIndex = 0; - [Test] public void Constructor_WithHydraulicBoundaryLocationCalculations_ExpectedValues() { @@ -82,27 +79,5 @@ RoundedDouble designWaterLevel = hydraulicBoundaryLocationCalculation.Output.Result; Assert.AreEqual(designWaterLevel, designWaterLevelLocationProperties.DesignWaterLevel, designWaterLevel.GetAccuracy()); } - - [Test] - public void Constructor_Always_PropertiesHaveExpectedAttributesValues() - { - // Call - var properties = new DesignWaterLevelLocationsProperties(new ObservableList()); - - // Assert - TypeConverter classTypeConverter = TypeDescriptor.GetConverter(properties, true); - Assert.IsInstanceOf(classTypeConverter); - - PropertyDescriptorCollection dynamicProperties = PropertiesTestHelper.GetAllVisiblePropertyDescriptors(properties); - Assert.AreEqual(1, dynamicProperties.Count); - - PropertyDescriptor locationsProperty = dynamicProperties[requiredLocationsPropertyIndex]; - Assert.IsInstanceOf(locationsProperty.Converter); - PropertiesTestHelper.AssertRequiredPropertyDescriptorProperties(locationsProperty, - "Algemeen", - "Locaties", - "Locaties uit de hydraulische randvoorwaardendatabase.", - true); - } } } \ No newline at end of file