Index: Ringtoets/Revetment/test/Ringtoets.Revetment.Forms.TestUtil/TestWaveConditionsInputContext.cs =================================================================== diff -u -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb -raf6d59e5d91e62762272f7480914b2e7c445b4d3 --- Ringtoets/Revetment/test/Ringtoets.Revetment.Forms.TestUtil/TestWaveConditionsInputContext.cs (.../TestWaveConditionsInputContext.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb) +++ Ringtoets/Revetment/test/Ringtoets.Revetment.Forms.TestUtil/TestWaveConditionsInputContext.cs (.../TestWaveConditionsInputContext.cs) (revision af6d59e5d91e62762272f7480914b2e7c445b4d3) @@ -20,9 +20,11 @@ // All rights reserved. using System.Collections.Generic; +using Ringtoets.Common.Data.AssessmentSection; using Ringtoets.Common.Data.Calculation; using Ringtoets.Common.Data.DikeProfiles; using Ringtoets.Common.Data.Hydraulics; +using Ringtoets.Common.Data.TestUtil; using Ringtoets.Revetment.Data; using Ringtoets.Revetment.Data.TestUtil; using Ringtoets.Revetment.Forms.PresentationObjects; @@ -40,7 +42,9 @@ /// /// The wrapped . public TestWaveConditionsInputContext(WaveConditionsInput wrappedData) - : this(wrappedData, new ForeshoreProfile[0], new HydraulicBoundaryLocation[0]) {} + : this(wrappedData, + new ForeshoreProfile[0], + new HydraulicBoundaryLocation[0]) {} /// /// Creates a new . @@ -51,20 +55,26 @@ public TestWaveConditionsInputContext(WaveConditionsInput wrappedData, IEnumerable foreshoreProfiles, IEnumerable locations) - : this(wrappedData, new TestWaveConditionsCalculation(), foreshoreProfiles, locations) {} + : this(wrappedData, + new TestWaveConditionsCalculation(), + new ObservableTestAssessmentSectionStub(), + foreshoreProfiles, + locations) {} /// /// Creates a new . /// /// The wrapped . /// The calculation. + /// The assessment section. /// The foreshore profiles. /// The hydraulic boundary locations. public TestWaveConditionsInputContext(WaveConditionsInput wrappedData, ICalculation calculation, + IAssessmentSection assessmentSection, IEnumerable foreshoreProfiles, IEnumerable locations) - : base(wrappedData, calculation) + : base(wrappedData, calculation, assessmentSection) { ForeshoreProfiles = foreshoreProfiles; HydraulicBoundaryLocations = locations;