public void SelectedHydraulicBoundaryLocation_InputNoLocation_ReturnsNull() { // Setup mockRepository.ReplayAll(); var calculation = new StructuresCalculation <SimpleStructureInput>(); var inputContext = new SimpleInputContext(calculation.InputParameters, calculation, failureMechanism, assessmentSection); var properties = new SimpleStructuresInputProperties( inputContext, new StructuresInputBaseProperties <TestStructure, SimpleStructureInput, StructuresCalculation <SimpleStructureInput>, IFailureMechanism> .ConstructionProperties(), handler); SelectableHydraulicBoundaryLocation selectedHydraulicBoundaryLocation = null; // Call TestDelegate call = () => selectedHydraulicBoundaryLocation = properties.SelectedHydraulicBoundaryLocation; // Assert Assert.DoesNotThrow(call); Assert.IsNull(selectedHydraulicBoundaryLocation); mockRepository.VerifyAll(); }
private void SetPropertyAndVerifyNotificationsAndOutput(Action <SimpleStructuresInputProperties> setProperty) { // Setup var observable = mockRepository.StrictMock <IObservable>(); observable.Expect(o => o.NotifyObservers()); mockRepository.ReplayAll(); var calculation = new StructuresCalculation <SimpleStructureInput>(); SimpleStructureInput input = calculation.InputParameters; input.ForeshoreProfile = new TestForeshoreProfile(); input.Structure = new TestStructure(); var customHandler = new SetPropertyValueAfterConfirmationParameterTester(new[] { observable }); var inputContext = new SimpleInputContext(input, calculation, failureMechanism, assessmentSection); var properties = new SimpleStructuresInputProperties(inputContext, GetRandomConstructionProperties(), customHandler); // Call setProperty(properties); // Assert mockRepository.VerifyAll(); }
public void SetProperties_IndividualProperties_UpdateDataAndNotifyObservers() { // Setup const int numberOfChangedProperties = 6; var observer = mockRepository.StrictMock <IObserver>(); observer.Expect(o => o.UpdateObserver()).Repeat.Times(numberOfChangedProperties); mockRepository.ReplayAll(); var calculation = new StructuresCalculation <SimpleStructureInput> { InputParameters = { Structure = new TestStructure() } }; var inputContext = new SimpleInputContext(calculation.InputParameters, calculation, failureMechanism, assessmentSection); var properties = new SimpleStructuresInputProperties( inputContext, new StructuresInputBaseProperties <TestStructure, SimpleStructureInput, StructuresCalculation <SimpleStructureInput>, IFailureMechanism> .ConstructionProperties(), new ObservablePropertyChangeHandler(inputContext.Calculation, calculation.InputParameters)); inputContext.Attach(observer); var random = new Random(100); double newStructureNormalOrientation = random.NextDouble(); const bool newShouldIllustrationPointsBeCalculated = true; var newStructure = new TestStructure(); ForeshoreProfile newForeshoreProfile = new TestForeshoreProfile(); HydraulicBoundaryLocation newHydraulicBoundaryLocation = CreateHydraulicBoundaryLocation(); var newSelectableHydraulicBoundaryLocation = new SelectableHydraulicBoundaryLocation(newHydraulicBoundaryLocation, null); // Call properties.Structure = newStructure; properties.StructureNormalOrientation = (RoundedDouble)newStructureNormalOrientation; properties.FailureProbabilityStructureWithErosion = 1e-2; properties.SelectedHydraulicBoundaryLocation = newSelectableHydraulicBoundaryLocation; properties.ForeshoreProfile = newForeshoreProfile; properties.ShouldIllustrationPointsBeCalculated = newShouldIllustrationPointsBeCalculated; // Assert Assert.AreSame(newStructure, properties.Structure); Assert.AreEqual(newStructureNormalOrientation, properties.StructureNormalOrientation, properties.StructureNormalOrientation.GetAccuracy()); Assert.AreEqual(0.01, properties.FailureProbabilityStructureWithErosion); Assert.AreSame(newHydraulicBoundaryLocation, properties.SelectedHydraulicBoundaryLocation.HydraulicBoundaryLocation); Assert.AreSame(newForeshoreProfile, properties.ForeshoreProfile); Assert.AreEqual(newShouldIllustrationPointsBeCalculated, properties.ShouldIllustrationPointsBeCalculated); mockRepository.VerifyAll(); }
public void GetSelectableHydraulicBoundaryLocations_InputWithLocationsStructure_CalculatesDistanceWithCorrectReferencePoint() { // Setup var hydraulicBoundaryLocation = new HydraulicBoundaryLocation(1, "A", 200643.312, 503347.25); assessmentSection.Stub(a => a.HydraulicBoundaryDatabase).Return(new HydraulicBoundaryDatabase { Locations = { hydraulicBoundaryLocation } }); mockRepository.ReplayAll(); var calculation = new StructuresCalculation <SimpleStructureInput> { InputParameters = { Structure = new TestStructure(new Point2D(200620.173572981, 503401.652985217)) } }; var inputContext = new SimpleInputContext(calculation.InputParameters, calculation, failureMechanism, assessmentSection); var properties = new SimpleStructuresInputProperties( inputContext, new StructuresInputBaseProperties <TestStructure, SimpleStructureInput, StructuresCalculation <SimpleStructureInput>, IFailureMechanism> .ConstructionProperties(), handler); // Call IEnumerable <SelectableHydraulicBoundaryLocation> availableHydraulicBoundaryLocations = properties.GetSelectableHydraulicBoundaryLocations(); // Assert double distanceToPropertiesStructureLocation = hydraulicBoundaryLocation.Location.GetEuclideanDistanceTo(properties.StructureLocation); double distanceToInputStructureLocation = hydraulicBoundaryLocation.Location.GetEuclideanDistanceTo(calculation.InputParameters.Structure.Location); Assert.AreEqual(59, distanceToPropertiesStructureLocation, 1); Assert.AreEqual(60, distanceToInputStructureLocation, 1); SelectableHydraulicBoundaryLocation hydraulicBoundaryLocationItem = availableHydraulicBoundaryLocations.ToArray()[0]; RoundedDouble itemDistance = hydraulicBoundaryLocationItem.Distance; Assert.AreEqual(distanceToInputStructureLocation, itemDistance, itemDistance.GetAccuracy()); mockRepository.VerifyAll(); }
public void GetSelectableHydraulicBoundaryLocations_InputWithLocationsAndStructure_ReturnsLocationsSortByDistanceThenById() { // Setup var hydraulicBoundaryDatabase = new HydraulicBoundaryDatabase { Locations = { new HydraulicBoundaryLocation(1, "A", 0, 10), new HydraulicBoundaryLocation(4, "E", 0, 500), new HydraulicBoundaryLocation(6, "F", 0, 100), new HydraulicBoundaryLocation(5, "D", 0, 200), new HydraulicBoundaryLocation(3, "C", 0, 200), new HydraulicBoundaryLocation(2, "B", 0, 200) } }; assessmentSection.Stub(a => a.HydraulicBoundaryDatabase).Return(hydraulicBoundaryDatabase); mockRepository.ReplayAll(); var calculation = new StructuresCalculation <SimpleStructureInput> { InputParameters = { Structure = new TestStructure() } }; var inputContext = new SimpleInputContext(calculation.InputParameters, calculation, failureMechanism, assessmentSection); var properties = new SimpleStructuresInputProperties( inputContext, new StructuresInputBaseProperties <TestStructure, SimpleStructureInput, StructuresCalculation <SimpleStructureInput>, IFailureMechanism> .ConstructionProperties(), handler); // Call IEnumerable <SelectableHydraulicBoundaryLocation> availableHydraulicBoundaryLocations = properties.GetSelectableHydraulicBoundaryLocations(); // Assert IEnumerable <SelectableHydraulicBoundaryLocation> expectedList = hydraulicBoundaryDatabase.Locations .Select(hbl => new SelectableHydraulicBoundaryLocation( hbl, calculation.InputParameters.Structure.Location)) .OrderBy(hbl => hbl.Distance) .ThenBy(hbl => hbl.HydraulicBoundaryLocation.Name); CollectionAssert.AreEqual(expectedList, availableHydraulicBoundaryLocations); mockRepository.VerifyAll(); }
public void GivenPropertiesWithStructureAndLocations_WhenSelectingLocation_ThenSelectedLocationDistanceSameAsLocationItem() { // Given var hydraulicBoundaryLocation = new HydraulicBoundaryLocation(1, "A", 200643.312, 503347.25); assessmentSection.Stub(a => a.HydraulicBoundaryDatabase).Return(new HydraulicBoundaryDatabase { Locations = { hydraulicBoundaryLocation } }); mockRepository.ReplayAll(); var calculation = new StructuresCalculation <SimpleStructureInput> { InputParameters = { HydraulicBoundaryLocation = hydraulicBoundaryLocation, Structure = new TestStructure(new Point2D(200620.173572981, 503401.652985217)) } }; var inputContext = new SimpleInputContext(calculation.InputParameters, calculation, failureMechanism, assessmentSection); var properties = new SimpleStructuresInputProperties( inputContext, new StructuresInputBaseProperties <TestStructure, SimpleStructureInput, StructuresCalculation <SimpleStructureInput>, IFailureMechanism> .ConstructionProperties(), handler); // When IEnumerable <SelectableHydraulicBoundaryLocation> availableHydraulicBoundaryLocations = properties.GetSelectableHydraulicBoundaryLocations(); SelectableHydraulicBoundaryLocation selectedLocation = properties.SelectedHydraulicBoundaryLocation; // Then SelectableHydraulicBoundaryLocation hydraulicBoundaryLocationItem = availableHydraulicBoundaryLocations.ToArray()[0]; Assert.AreEqual(selectedLocation.Distance, hydraulicBoundaryLocationItem.Distance, hydraulicBoundaryLocationItem.Distance.GetAccuracy()); mockRepository.VerifyAll(); }
public void Constructor_ChangeHandlerIsNull_ThrowsArgumentNullException() { // Setup StructuresInputBaseProperties <TestStructure, SimpleStructureInput, StructuresCalculation <SimpleStructureInput>, IFailureMechanism> .ConstructionProperties constructionProperties = GetRandomConstructionProperties(); var calculation = new StructuresCalculation <SimpleStructureInput>(); var inputContext = new SimpleInputContext(calculation.InputParameters, calculation, failureMechanism, assessmentSection); // Call TestDelegate call = () => new SimpleStructuresInputProperties(inputContext, constructionProperties, null); // Assert string paramName = Assert.Throws <ArgumentNullException>(call).ParamName; Assert.AreEqual("propertyChangeHandler", paramName); }
public void Constructor_ConstructionPropertiesIsNull_ThrowsArgumentNullException() { // Setup mockRepository.ReplayAll(); var calculation = new StructuresCalculation <SimpleStructureInput>(); var inputContext = new SimpleInputContext(calculation.InputParameters, calculation, failureMechanism, assessmentSection); // Call TestDelegate call = () => new SimpleStructuresInputProperties(inputContext, null, handler); // Assert string paramName = Assert.Throws <ArgumentNullException>(call).ParamName; Assert.AreEqual("constructionProperties", paramName); mockRepository.VerifyAll(); }
public void SelectedHydraulicBoundaryLocation_InputWithLocationsStructure_CalculatesDistanceWithCorrectReferencePoint() { // Setup mockRepository.ReplayAll(); var hydraulicBoundaryLocation = new HydraulicBoundaryLocation(1, "A", 200643.312, 503347.25); var calculation = new StructuresCalculation <SimpleStructureInput> { InputParameters = { HydraulicBoundaryLocation = hydraulicBoundaryLocation, Structure = new TestStructure(new Point2D(200620.173572981, 503401.652985217)) } }; var inputContext = new SimpleInputContext(calculation.InputParameters, calculation, failureMechanism, assessmentSection); var properties = new SimpleStructuresInputProperties( inputContext, new StructuresInputBaseProperties <TestStructure, SimpleStructureInput, StructuresCalculation <SimpleStructureInput>, IFailureMechanism> .ConstructionProperties(), handler); // Call SelectableHydraulicBoundaryLocation selectedHydraulicBoundaryLocation = properties.SelectedHydraulicBoundaryLocation; // Assert double distanceToPropertiesStructureLocation = hydraulicBoundaryLocation.Location.GetEuclideanDistanceTo(properties.StructureLocation); double distanceToInputStructureLocation = hydraulicBoundaryLocation.Location.GetEuclideanDistanceTo(calculation.InputParameters.Structure.Location); Assert.AreEqual(59, distanceToPropertiesStructureLocation, 1); Assert.AreEqual(60, distanceToInputStructureLocation, 1); RoundedDouble selectedLocationDistance = selectedHydraulicBoundaryLocation.Distance; Assert.AreEqual(distanceToInputStructureLocation, selectedLocationDistance, selectedLocationDistance.GetAccuracy()); mockRepository.VerifyAll(); }
public void ParameteredConstructor_ExpectedValues() { // Setup var mockRepository = new MockRepository(); var assessmentSection = mockRepository.Stub <IAssessmentSection>(); var input = mockRepository.Stub <ICalculationInput>(); var calculation = mockRepository.Stub <ICalculation>(); var failureMechanism = mockRepository.Stub <IFailureMechanism>(); mockRepository.ReplayAll(); // Call var context = new SimpleInputContext <ICalculationInput, ICalculation, IFailureMechanism>(input, calculation, failureMechanism, assessmentSection); // Assert Assert.IsInstanceOf <FailureMechanismItemContextBase <ICalculationInput, IFailureMechanism> >(context); Assert.AreSame(input, context.WrappedData); Assert.AreSame(calculation, context.Calculation); Assert.AreSame(failureMechanism, context.FailureMechanism); Assert.AreSame(assessmentSection, context.AssessmentSection); mockRepository.VerifyAll(); }
public void Constructor_WithOrWithoutStructure_CorrectReadOnlyForStructureDependentProperties(bool hasStructure) { // Setup mockRepository.ReplayAll(); StructuresInputBaseProperties <TestStructure, SimpleStructureInput, StructuresCalculation <SimpleStructureInput>, IFailureMechanism> .ConstructionProperties constructionProperties = GetRandomConstructionProperties(); var calculation = new StructuresCalculation <SimpleStructureInput>(); var inputContext = new SimpleInputContext(calculation.InputParameters, calculation, failureMechanism, assessmentSection); if (hasStructure) { calculation.InputParameters.Structure = new TestStructure(); } // Call var properties = new SimpleStructuresInputProperties( inputContext, constructionProperties, handler); // Assert PropertyDescriptorCollection dynamicProperties = PropertiesTestHelper.GetAllVisiblePropertyDescriptors(properties); bool expectedReadOnly = !hasStructure; PropertyDescriptor structureNormalOrientationProperty = dynamicProperties[constructionProperties.StructureNormalOrientationPropertyIndex]; Assert.AreEqual(expectedReadOnly, structureNormalOrientationProperty.IsReadOnly); AssertPropertiesInState(properties.FlowWidthAtBottomProtection, expectedReadOnly); AssertPropertiesInState(properties.WidthFlowApertures, expectedReadOnly); AssertPropertiesInState(properties.StorageStructureArea, expectedReadOnly); AssertPropertiesInState(properties.AllowedLevelIncreaseStorage, expectedReadOnly); AssertPropertiesInState(properties.CriticalOvertoppingDischarge, expectedReadOnly); }
public SimpleStructuresInputProperties(SimpleInputContext context, ConstructionProperties constructionProperties, IObservablePropertyChangeHandler handler) : base(context, constructionProperties, handler) { }
public void GivenLocationAndReferencePoint_WhenUpdatingStructure_ThenUpdateSelectableBoundaryLocations() { // Given var hydraulicBoundaryDatabase = new HydraulicBoundaryDatabase { Locations = { new HydraulicBoundaryLocation(1, "A", 0, 10), new HydraulicBoundaryLocation(4, "E", 0, 500), new HydraulicBoundaryLocation(6, "F", 0, 100), new HydraulicBoundaryLocation(5, "D", 0, 200), new HydraulicBoundaryLocation(3, "C", 0, 200), new HydraulicBoundaryLocation(2, "B", 0, 200) } }; assessmentSection.Stub(a => a.HydraulicBoundaryDatabase).Return(hydraulicBoundaryDatabase); mockRepository.ReplayAll(); var calculation = new StructuresCalculation <SimpleStructureInput> { InputParameters = { Structure = new TestStructure() } }; var inputContext = new SimpleInputContext(calculation.InputParameters, calculation, failureMechanism, assessmentSection); var newStructure = new TestStructure(new Point2D(0, 190)); SetPropertyValueAfterConfirmationParameterTester customHandler = CreateCustomHandlerForCalculationReturningNoObservables(); var properties = new SimpleStructuresInputProperties( inputContext, new StructuresInputBaseProperties <TestStructure, SimpleStructureInput, StructuresCalculation <SimpleStructureInput>, IFailureMechanism> .ConstructionProperties(), customHandler); IEnumerable <SelectableHydraulicBoundaryLocation> originalList = properties.GetSelectableHydraulicBoundaryLocations() .ToList(); // When properties.Structure = newStructure; // Then IEnumerable <SelectableHydraulicBoundaryLocation> availableHydraulicBoundaryLocations = properties.GetSelectableHydraulicBoundaryLocations().ToList(); CollectionAssert.AreNotEqual(originalList, availableHydraulicBoundaryLocations); IEnumerable <SelectableHydraulicBoundaryLocation> expectedList = hydraulicBoundaryDatabase.Locations .Select(hbl => new SelectableHydraulicBoundaryLocation( hbl, properties.StructureLocation)) .OrderBy(hbl => hbl.Distance) .ThenBy(hbl => hbl.HydraulicBoundaryLocation.Id); CollectionAssert.AreEqual(expectedList, availableHydraulicBoundaryLocations); mockRepository.VerifyAll(); }
public void Constructor_ValidValues_ExpectedValues() { // Setup mockRepository.ReplayAll(); StructuresInputBaseProperties <TestStructure, SimpleStructureInput, StructuresCalculation <SimpleStructureInput>, IFailureMechanism> .ConstructionProperties constructionProperties = GetRandomConstructionProperties(); var calculation = new StructuresCalculation <SimpleStructureInput>(); var inputContext = new SimpleInputContext(calculation.InputParameters, calculation, failureMechanism, assessmentSection); // Call var properties = new SimpleStructuresInputProperties( inputContext, constructionProperties, handler); // Assert Assert.IsInstanceOf <ObjectProperties <InputContextBase <SimpleStructureInput, StructuresCalculation <SimpleStructureInput>, IFailureMechanism> > >(properties); Assert.IsInstanceOf <IHasHydraulicBoundaryLocationProperty>(properties); Assert.IsInstanceOf <IHasStructureProperty <TestStructure> >(properties); Assert.IsInstanceOf <IHasForeshoreProfileProperty>(properties); Assert.AreSame(inputContext, properties.Data); SimpleStructureInput input = calculation.InputParameters; Assert.IsNull(properties.Structure); Assert.IsNull(properties.StructureLocation); Assert.AreEqual(input.StructureNormalOrientation, properties.StructureNormalOrientation); Assert.AreSame(input.AllowedLevelIncreaseStorage, properties.AllowedLevelIncreaseStorage.Data); Assert.AreSame(input.StorageStructureArea, properties.StorageStructureArea.Data); Assert.AreSame(input.FlowWidthAtBottomProtection, properties.FlowWidthAtBottomProtection.Data); Assert.AreSame(input.WidthFlowApertures, properties.WidthFlowApertures.Data); Assert.AreSame(input.CriticalOvertoppingDischarge, properties.CriticalOvertoppingDischarge.Data); Assert.IsNull(properties.ForeshoreProfile); Assert.IsInstanceOf <UseBreakWaterProperties>(properties.UseBreakWater); Assert.IsInstanceOf <UseForeshoreProperties>(properties.UseForeshore); Assert.AreEqual(input.FailureProbabilityStructureWithErosion, properties.FailureProbabilityStructureWithErosion); Assert.IsNull(properties.SelectedHydraulicBoundaryLocation); Assert.AreSame(input.StormDuration, properties.StormDuration.Data); Assert.AreEqual(input.ShouldIllustrationPointsBeCalculated, properties.ShouldIllustrationPointsBeCalculated); const string generalCategory = "Algemeen"; const string schematizationIncomingFlowCategory = "Schematisering instromend debiet/volume"; const string schematizationGroundErosionCategory = "Schematisering bodembescherming"; const string schematizationStorageStructureCategory = "Schematisering komberging"; const string schematizationForeshoreCategory = "Voorland en (haven)dam"; const string outputSettingsCategory = "Uitvoer"; PropertyDescriptorCollection dynamicProperties = PropertiesTestHelper.GetAllVisiblePropertyDescriptors(properties); Assert.AreEqual(15, dynamicProperties.Count); PropertyDescriptor structureProperty = dynamicProperties[constructionProperties.StructurePropertyIndex]; Assert.IsFalse(structureProperty.IsReadOnly); Assert.AreEqual(generalCategory, structureProperty.Category); Assert.AreEqual("Kunstwerk", structureProperty.DisplayName); Assert.AreEqual("Het kunstwerk dat gebruikt wordt in de berekening.", structureProperty.Description); PropertyDescriptor structureLocationProperty = dynamicProperties[constructionProperties.StructureLocationPropertyIndex]; Assert.IsTrue(structureLocationProperty.IsReadOnly); Assert.AreEqual(generalCategory, structureLocationProperty.Category); Assert.AreEqual("Locatie (RD) [m]", structureLocationProperty.DisplayName); Assert.AreEqual("De coördinaten van de locatie van het kunstwerk in het Rijksdriehoeksstelsel.", structureLocationProperty.Description); PropertyDescriptor hydraulicBoundaryLocationProperty = dynamicProperties[constructionProperties.HydraulicBoundaryLocationPropertyIndex]; Assert.IsFalse(hydraulicBoundaryLocationProperty.IsReadOnly); Assert.AreEqual(generalCategory, hydraulicBoundaryLocationProperty.Category); Assert.AreEqual("Hydraulische belastingenlocatie", hydraulicBoundaryLocationProperty.DisplayName); Assert.AreEqual("De hydraulische belastingenlocatie.", hydraulicBoundaryLocationProperty.Description); PropertyDescriptor structureNormalOrientationProperty = dynamicProperties[constructionProperties.StructureNormalOrientationPropertyIndex]; Assert.IsTrue(structureNormalOrientationProperty.IsReadOnly); Assert.AreEqual(schematizationIncomingFlowCategory, structureNormalOrientationProperty.Category); Assert.AreEqual("Oriëntatie [°]", structureNormalOrientationProperty.DisplayName); Assert.AreEqual("Oriëntatie van de normaal van het kunstwerk ten opzichte van het noorden.", structureNormalOrientationProperty.Description); PropertyDescriptor widthFlowAperturesProperty = dynamicProperties[constructionProperties.WidthFlowAperturesPropertyIndex]; Assert.IsInstanceOf <ExpandableObjectConverter>(widthFlowAperturesProperty.Converter); Assert.AreEqual(schematizationIncomingFlowCategory, widthFlowAperturesProperty.Category); Assert.AreEqual("Breedte van doorstroomopening [m]", widthFlowAperturesProperty.DisplayName); Assert.AreEqual("Breedte van de doorstroomopening.", widthFlowAperturesProperty.Description); PropertyDescriptor stormDurationProperty = dynamicProperties[constructionProperties.StormDurationPropertyIndex]; Assert.IsInstanceOf <ExpandableObjectConverter>(stormDurationProperty.Converter); Assert.AreEqual(schematizationIncomingFlowCategory, stormDurationProperty.Category); Assert.AreEqual("Stormduur [uur]", stormDurationProperty.DisplayName); Assert.AreEqual("Stormduur.", stormDurationProperty.Description); PropertyDescriptor criticalOvertoppingDischargeProperty = dynamicProperties[constructionProperties.CriticalOvertoppingDischargePropertyIndex]; Assert.IsInstanceOf <ExpandableObjectConverter>(criticalOvertoppingDischargeProperty.Converter); Assert.AreEqual(schematizationGroundErosionCategory, criticalOvertoppingDischargeProperty.Category); Assert.AreEqual("Kritiek instromend debiet [m³/s/m]", criticalOvertoppingDischargeProperty.DisplayName); Assert.AreEqual("Kritiek instromend debiet directe invoer per strekkende meter.", criticalOvertoppingDischargeProperty.Description); PropertyDescriptor flowWidthAtBottomProtectionProperty = dynamicProperties[constructionProperties.FlowWidthAtBottomProtectionPropertyIndex]; Assert.IsInstanceOf <ExpandableObjectConverter>(flowWidthAtBottomProtectionProperty.Converter); Assert.AreEqual(schematizationGroundErosionCategory, flowWidthAtBottomProtectionProperty.Category); Assert.AreEqual("Stroomvoerende breedte bodembescherming [m]", flowWidthAtBottomProtectionProperty.DisplayName); Assert.AreEqual("Stroomvoerende breedte bodembescherming.", flowWidthAtBottomProtectionProperty.Description); PropertyDescriptor failureProbabilityStructureWithErosionProperty = dynamicProperties[constructionProperties.FailureProbabilityStructureWithErosionPropertyIndex]; Assert.IsFalse(failureProbabilityStructureWithErosionProperty.IsReadOnly); Assert.AreEqual(schematizationGroundErosionCategory, failureProbabilityStructureWithErosionProperty.Category); Assert.AreEqual("Faalkans gegeven erosie bodem [-]", failureProbabilityStructureWithErosionProperty.DisplayName); Assert.AreEqual("Faalkans kunstwerk gegeven erosie bodem.", failureProbabilityStructureWithErosionProperty.Description); PropertyDescriptor storageStructureAreaProperty = dynamicProperties[constructionProperties.StorageStructureAreaPropertyIndex]; Assert.IsInstanceOf <ExpandableObjectConverter>(storageStructureAreaProperty.Converter); Assert.AreEqual(schematizationStorageStructureCategory, storageStructureAreaProperty.Category); Assert.AreEqual("Kombergend oppervlak [m²]", storageStructureAreaProperty.DisplayName); Assert.AreEqual("Kombergend oppervlak.", storageStructureAreaProperty.Description); PropertyDescriptor allowedLevelIncreaseStorageProperty = dynamicProperties[constructionProperties.AllowedLevelIncreaseStoragePropertyIndex]; Assert.IsInstanceOf <ExpandableObjectConverter>(allowedLevelIncreaseStorageProperty.Converter); Assert.AreEqual(schematizationStorageStructureCategory, allowedLevelIncreaseStorageProperty.Category); Assert.AreEqual("Toegestane peilverhoging komberging [m]", allowedLevelIncreaseStorageProperty.DisplayName); Assert.AreEqual("Toegestane peilverhoging komberging.", allowedLevelIncreaseStorageProperty.Description); PropertyDescriptor foreshoreProfileProperty = dynamicProperties[constructionProperties.ForeshoreProfilePropertyIndex]; Assert.IsFalse(foreshoreProfileProperty.IsReadOnly); Assert.AreEqual(schematizationForeshoreCategory, foreshoreProfileProperty.Category); Assert.AreEqual("Voorlandprofiel", foreshoreProfileProperty.DisplayName); Assert.AreEqual("De schematisatie van het voorlandprofiel.", foreshoreProfileProperty.Description); PropertyDescriptor useBreakWaterProperty = dynamicProperties[constructionProperties.UseBreakWaterPropertyIndex]; Assert.IsInstanceOf <ExpandableObjectConverter>(useBreakWaterProperty.Converter); Assert.IsTrue(useBreakWaterProperty.IsReadOnly); Assert.AreEqual(schematizationForeshoreCategory, useBreakWaterProperty.Category); Assert.AreEqual("Dam", useBreakWaterProperty.DisplayName); Assert.AreEqual("Eigenschappen van de dam.", useBreakWaterProperty.Description); PropertyDescriptor useForeshoreProperty = dynamicProperties[constructionProperties.UseForeshorePropertyIndex]; Assert.IsInstanceOf <ExpandableObjectConverter>(useForeshoreProperty.Converter); Assert.IsTrue(useForeshoreProperty.IsReadOnly); Assert.AreEqual(schematizationForeshoreCategory, useForeshoreProperty.Category); Assert.AreEqual("Voorlandgeometrie", useForeshoreProperty.DisplayName); Assert.AreEqual("Eigenschappen van de voorlandgeometrie.", useForeshoreProperty.Description); int illustrationPointPropertyIndex = dynamicProperties.Count - 1; PropertyDescriptor shouldIllustrationPointsBeCalculatedProperty = dynamicProperties[illustrationPointPropertyIndex]; Assert.AreEqual(outputSettingsCategory, shouldIllustrationPointsBeCalculatedProperty.Category); Assert.AreEqual("Illustratiepunten inlezen", shouldIllustrationPointsBeCalculatedProperty.DisplayName); Assert.AreEqual("Neem de informatie over de illustratiepunten op in het berekeningsresultaat.", shouldIllustrationPointsBeCalculatedProperty.Description); mockRepository.VerifyAll(); }