Index: Ringtoets/Common/test/Ringtoets.Common.Service.Test/RingtoetsCommonDataSynchronizationServiceTest.cs =================================================================== diff -u -r9ff0a37a156186137dbaf5a4d43bc0fab10de1f0 -r8bb6e849266ec28412ebfe23beccd7235c4db9bf --- Ringtoets/Common/test/Ringtoets.Common.Service.Test/RingtoetsCommonDataSynchronizationServiceTest.cs (.../RingtoetsCommonDataSynchronizationServiceTest.cs) (revision 9ff0a37a156186137dbaf5a4d43bc0fab10de1f0) +++ Ringtoets/Common/test/Ringtoets.Common.Service.Test/RingtoetsCommonDataSynchronizationServiceTest.cs (.../RingtoetsCommonDataSynchronizationServiceTest.cs) (revision 8bb6e849266ec28412ebfe23beccd7235c4db9bf) @@ -59,8 +59,14 @@ // Setup HydraulicBoundaryLocation location = new TestHydraulicBoundaryLocation { - DesignWaterLevelOutput = new TestHydraulicBoundaryLocationOutput(designWaterLevel), - WaveHeightOutput = new TestHydraulicBoundaryLocationOutput(waveHeight) + DesignWaterLevelCalculation = + { + Output = new TestHydraulicBoundaryLocationOutput(designWaterLevel) + }, + WaveHeightCalculation = + { + Output = new TestHydraulicBoundaryLocationOutput(waveHeight) + } }; var locations = new ObservableList { @@ -71,8 +77,8 @@ IEnumerable affectedObjects = RingtoetsCommonDataSynchronizationService.ClearHydraulicBoundaryLocationOutput(locations); // Assert - Assert.IsNull(location.DesignWaterLevelOutput); - Assert.IsNull(location.WaveHeightOutput); + Assert.IsFalse(location.DesignWaterLevelCalculation.HasOutput); + Assert.IsFalse(location.WaveHeightCalculation.HasOutput); Assert.IsNaN(location.DesignWaterLevel); Assert.IsNaN(location.WaveHeight); Assert.AreEqual(CalculationConvergence.NotCalculated, location.DesignWaterLevelCalculationConvergence);