Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/ViewInfos/DesignWaterLevelLocationsViewInfoTest.cs =================================================================== diff -u -rcaebe0a4ed7807b5ef15ba294518529341c05900 -rb2d403b53ea5b4bba4cbe852858bf48d4d04b81e --- Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/ViewInfos/DesignWaterLevelLocationsViewInfoTest.cs (.../DesignWaterLevelLocationsViewInfoTest.cs) (revision caebe0a4ed7807b5ef15ba294518529341c05900) +++ Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/ViewInfos/DesignWaterLevelLocationsViewInfoTest.cs (.../DesignWaterLevelLocationsViewInfoTest.cs) (revision b2d403b53ea5b4bba4cbe852858bf48d4d04b81e) @@ -114,7 +114,9 @@ // Setup var assessmentSection = new ObservableTestAssessmentSectionStub(); ObservableList locations = assessmentSection.HydraulicBoundaryDatabase.Locations; - var context = new DesignWaterLevelLocationsContext(locations, assessmentSection); + var context = new DesignWaterLevelLocationsContext(locations, + assessmentSection, + hbl => new HydraulicBoundaryLocationCalculation()); // Call object viewData = info.GetViewData(context); @@ -129,7 +131,8 @@ // Setup var assessmentSection = new ObservableTestAssessmentSectionStub(); var context = new DesignWaterLevelLocationsContext(new ObservableList(), - assessmentSection); + assessmentSection, + hbl => new HydraulicBoundaryLocationCalculation()); using (var ringtoetsPlugin = new RingtoetsPlugin()) { @@ -158,10 +161,12 @@ mocks.ReplayAll(); var assessmentSection = new ObservableTestAssessmentSectionStub(); - var context = new DesignWaterLevelLocationsContext(new ObservableList(), - assessmentSection); + var locations = new ObservableList(); + var context = new DesignWaterLevelLocationsContext(locations, + assessmentSection, + hbl => new HydraulicBoundaryLocationCalculation()); - using (var view = new DesignWaterLevelLocationsView(new ObservableList(), + using (var view = new DesignWaterLevelLocationsView(locations, hbl => new HydraulicBoundaryLocationCalculation(), new ObservableTestAssessmentSectionStub(), () => 0.01))