Index: Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Plugin.Test/PropertyInfos/StabilityStoneCoverWaveConditionsInputContextPropertyInfoTest.cs =================================================================== diff -u -re3b58f9f74ce55c3334ca41ba325a7e5ff94052a -r0eddea1a45f0d9efb0a2a12e90eb99e814d1becb --- Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Plugin.Test/PropertyInfos/StabilityStoneCoverWaveConditionsInputContextPropertyInfoTest.cs (.../StabilityStoneCoverWaveConditionsInputContextPropertyInfoTest.cs) (revision e3b58f9f74ce55c3334ca41ba325a7e5ff94052a) +++ Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Plugin.Test/PropertyInfos/StabilityStoneCoverWaveConditionsInputContextPropertyInfoTest.cs (.../StabilityStoneCoverWaveConditionsInputContextPropertyInfoTest.cs) (revision 0eddea1a45f0d9efb0a2a12e90eb99e814d1becb) @@ -20,7 +20,6 @@ // All rights reserved. using System.Linq; -using Core.Common.Base.Data; using Core.Common.Gui.Plugin; using Core.Common.Gui.PropertyBag; using NUnit.Framework; @@ -55,12 +54,12 @@ [Test] [TestCaseSource( typeof(AssessmentSectionHelper), - nameof(AssessmentSectionHelper.GetAssessmentLevelConfigurationPerAssessmentSectionCategoryType))] + nameof(AssessmentSectionHelper.GetHydraulicBoundaryLocationCalculationConfigurationPerAssessmentSectionCategoryType))] public void CreateInstance_WithContextThatHasInputWithSpecificCategoryType_ExpectedProperties( IAssessmentSection assessmentSection, HydraulicBoundaryLocation hydraulicBoundaryLocation, AssessmentSectionCategoryType categoryType, - RoundedDouble expectedAssessmentLevel) + HydraulicBoundaryLocationCalculation expectedHydraulicBoundaryLocationCalculation) { // Setup var calculation = new StabilityStoneCoverWaveConditionsCalculation @@ -88,7 +87,8 @@ Assert.IsInstanceOf(objectProperties); Assert.AreSame(context, objectProperties.Data); - Assert.AreEqual(expectedAssessmentLevel, ((StabilityStoneCoverWaveConditionsInputContextProperties) objectProperties).AssessmentLevel); + Assert.AreEqual(expectedHydraulicBoundaryLocationCalculation.Output.Result, + ((StabilityStoneCoverWaveConditionsInputContextProperties) objectProperties).AssessmentLevel); } }