Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/DesignWaterLevelLocationsViewTest.cs =================================================================== diff -u -r802ea30d1fe8fbae93e58dff9ab054dbabca11ae -r8bb6e849266ec28412ebfe23beccd7235c4db9bf --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/DesignWaterLevelLocationsViewTest.cs (.../DesignWaterLevelLocationsViewTest.cs) (revision 802ea30d1fe8fbae93e58dff9ab054dbabca11ae) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/DesignWaterLevelLocationsViewTest.cs (.../DesignWaterLevelLocationsViewTest.cs) (revision 8bb6e849266ec28412ebfe23beccd7235c4db9bf) @@ -185,7 +185,10 @@ var newHydraulicBoundaryDatabase = new HydraulicBoundaryDatabase(); var hydraulicBoundaryLocation = new HydraulicBoundaryLocation(10, "10", 10.0, 10.0) { - DesignWaterLevelOutput = new TestHydraulicBoundaryLocationOutput(10.23) + DesignWaterLevelCalculation = + { + Output = new TestHydraulicBoundaryLocationOutput(10.23) + } }; newHydraulicBoundaryDatabase.Locations.Add(hydraulicBoundaryLocation); @@ -226,7 +229,7 @@ Assert.AreEqual("-", rows[2].Cells[locationDesignWaterlevelColumnIndex].FormattedValue); // Call - assessmentSection.HydraulicBoundaryDatabase.Locations.ForEach(loc => loc.DesignWaterLevelOutput = null); + assessmentSection.HydraulicBoundaryDatabase.Locations.ForEach(loc => loc.DesignWaterLevelCalculation.Output = null); assessmentSection.NotifyObservers(); // Assert @@ -335,11 +338,17 @@ Locations.Add(new HydraulicBoundaryLocation(1, "1", 1.0, 1.0)); Locations.Add(new HydraulicBoundaryLocation(2, "2", 2.0, 2.0) { - DesignWaterLevelOutput = new TestHydraulicBoundaryLocationOutput(1.23) + DesignWaterLevelCalculation = + { + Output = new TestHydraulicBoundaryLocationOutput(1.23) + } }); Locations.Add(new HydraulicBoundaryLocation(3, "3", 3.0, 3.0) { - WaveHeightOutput = new TestHydraulicBoundaryLocationOutput(2.45) + WaveHeightCalculation = + { + Output = new TestHydraulicBoundaryLocationOutput(2.45) + } }); } }