Index: Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Plugin.Test/PropertyInfos/WaveImpactAsphaltCoverWaveConditionsInputContextPropertyInfoTest.cs =================================================================== diff -u -re3b58f9f74ce55c3334ca41ba325a7e5ff94052a -r0eddea1a45f0d9efb0a2a12e90eb99e814d1becb --- Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Plugin.Test/PropertyInfos/WaveImpactAsphaltCoverWaveConditionsInputContextPropertyInfoTest.cs (.../WaveImpactAsphaltCoverWaveConditionsInputContextPropertyInfoTest.cs) (revision e3b58f9f74ce55c3334ca41ba325a7e5ff94052a) +++ Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Plugin.Test/PropertyInfos/WaveImpactAsphaltCoverWaveConditionsInputContextPropertyInfoTest.cs (.../WaveImpactAsphaltCoverWaveConditionsInputContextPropertyInfoTest.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 WaveImpactAsphaltCoverWaveConditionsCalculation @@ -88,7 +87,8 @@ Assert.IsInstanceOf(objectProperties); Assert.AreSame(context, objectProperties.Data); - Assert.AreEqual(expectedAssessmentLevel, ((WaveImpactAsphaltCoverWaveConditionsInputContextProperties) objectProperties).AssessmentLevel); + Assert.AreEqual(expectedHydraulicBoundaryLocationCalculation.Output.Result, + ((WaveImpactAsphaltCoverWaveConditionsInputContextProperties) objectProperties).AssessmentLevel); } }