Index: Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/Configurations/WaveConditionsCalculationConfigurationTest.cs =================================================================== diff -u -r4fa75e2c07753d69a156377821eec5caaff7fc11 -r681fe6f5c04ea2acdb99801dd749a11a174d5b42 --- Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/Configurations/WaveConditionsCalculationConfigurationTest.cs (.../WaveConditionsCalculationConfigurationTest.cs) (revision 4fa75e2c07753d69a156377821eec5caaff7fc11) +++ Ringtoets/Revetment/test/Ringtoets.Revetment.IO.Test/Configurations/WaveConditionsCalculationConfigurationTest.cs (.../WaveConditionsCalculationConfigurationTest.cs) (revision 681fe6f5c04ea2acdb99801dd749a11a174d5b42) @@ -51,13 +51,13 @@ // Assert Assert.IsInstanceOf(readCalculation); Assert.AreEqual(name, readCalculation.Name); - Assert.IsNull(readCalculation.HydraulicBoundaryLocation); + Assert.IsNull(readCalculation.HydraulicBoundaryLocationName); Assert.IsNull(readCalculation.UpperBoundaryRevetment); Assert.IsNull(readCalculation.LowerBoundaryRevetment); Assert.IsNull(readCalculation.UpperBoundaryWaterLevels); Assert.IsNull(readCalculation.LowerBoundaryWaterLevels); Assert.IsNull(readCalculation.StepSize); - Assert.IsNull(readCalculation.ForeshoreProfile); + Assert.IsNull(readCalculation.ForeshoreProfileId); Assert.IsNull(readCalculation.Orientation); Assert.IsNull(readCalculation.WaveReduction); } @@ -83,13 +83,13 @@ // Call var readWaveConditionsCalculation = new WaveConditionsCalculationConfiguration(calculationName) { - HydraulicBoundaryLocation = hydraulicBoundaryLocation, + HydraulicBoundaryLocationName = hydraulicBoundaryLocation, UpperBoundaryRevetment = upperBoundaryRevetment, LowerBoundaryRevetment = lowerBoundaryRevetment, UpperBoundaryWaterLevels = upperBoundaryWaterLevels, LowerBoundaryWaterLevels = lowerBoundaryWaterLevels, StepSize = stepSize, - ForeshoreProfile = foreshoreProfileName, + ForeshoreProfileId = foreshoreProfileName, Orientation = orientation, WaveReduction = new WaveReductionConfiguration { @@ -102,13 +102,13 @@ // Assert Assert.AreEqual(calculationName, readWaveConditionsCalculation.Name); - Assert.AreEqual(hydraulicBoundaryLocation, readWaveConditionsCalculation.HydraulicBoundaryLocation); + Assert.AreEqual(hydraulicBoundaryLocation, readWaveConditionsCalculation.HydraulicBoundaryLocationName); Assert.AreEqual(upperBoundaryRevetment, readWaveConditionsCalculation.UpperBoundaryRevetment); Assert.AreEqual(lowerBoundaryRevetment, readWaveConditionsCalculation.LowerBoundaryRevetment); Assert.AreEqual(upperBoundaryWaterLevels, readWaveConditionsCalculation.UpperBoundaryWaterLevels); Assert.AreEqual(lowerBoundaryWaterLevels, readWaveConditionsCalculation.LowerBoundaryWaterLevels); Assert.AreEqual(stepSize, readWaveConditionsCalculation.StepSize); - Assert.AreEqual(foreshoreProfileName, readWaveConditionsCalculation.ForeshoreProfile); + Assert.AreEqual(foreshoreProfileName, readWaveConditionsCalculation.ForeshoreProfileId); Assert.AreEqual(orientation, readWaveConditionsCalculation.Orientation); Assert.AreEqual(useBreakWater, readWaveConditionsCalculation.WaveReduction.UseBreakWater); Assert.AreEqual(breakWaterType, readWaveConditionsCalculation.WaveReduction.BreakWaterType);