Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/WaveHeightLocationsViewTest.cs =================================================================== diff -u -rdd403402744c68406685f2838f6f41e23eada5f2 -r10e6f9291398660f562b21320da82ba6b557bdf2 --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/WaveHeightLocationsViewTest.cs (.../WaveHeightLocationsViewTest.cs) (revision dd403402744c68406685f2838f6f41e23eada5f2) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/WaveHeightLocationsViewTest.cs (.../WaveHeightLocationsViewTest.cs) (revision 10e6f9291398660f562b21320da82ba6b557bdf2) @@ -548,7 +548,8 @@ } private static WaveHeightLocationsView ShowWaveHeightLocationsView(ObservableList locations, - IAssessmentSection assessmentSection, Form form) + IAssessmentSection assessmentSection, + Form form) { var view = new WaveHeightLocationsView(locations, assessmentSection); @@ -662,28 +663,10 @@ return ShowFullyConfiguredWaveHeightLocationsView(locations, form); } - protected override void ReplaceHydraulicBoundaryDatabaseAndNotifyObservers(LocationsView view) + protected override ObservableList GetLocationsInView(LocationsView view) { - locations.Clear(); - locations.Add(new HydraulicBoundaryLocation(10, "10", 10.0, 10.0)); - locations.NotifyObservers(); + return locations; } - - protected override void ClearLocationOutputAndNotifyObservers(LocationsView view) - { - locations.ForEach(loc => - { - loc.WaveHeightCalculation.Output = null; - loc.NotifyObservers(); - }); - } - - protected override void AddLocationOutputAndNotifyObservers(LocationsView view) - { - HydraulicBoundaryLocation hydraulicBoundaryLocation = locations.First(); - hydraulicBoundaryLocation.WaveHeightCalculation.Output = new TestHydraulicBoundaryLocationOutput(new TestGeneralResultSubMechanismIllustrationPoint()); - hydraulicBoundaryLocation.NotifyObservers(); - } } } } \ No newline at end of file