Index: Ringtoets/DuneErosion/test/Ringtoets.DuneErosion.Data.TestUtil/TestDuneLocationCalculationOutput.cs =================================================================== diff -u -r649b0974fb71df7368d19682bc255618f44d49c1 -rb39380e3c212109818587975e3c75acc508d5d2a --- Ringtoets/DuneErosion/test/Ringtoets.DuneErosion.Data.TestUtil/TestDuneLocationCalculationOutput.cs (.../TestDuneLocationCalculationOutput.cs) (revision 649b0974fb71df7368d19682bc255618f44d49c1) +++ Ringtoets/DuneErosion/test/Ringtoets.DuneErosion.Data.TestUtil/TestDuneLocationCalculationOutput.cs (.../TestDuneLocationCalculationOutput.cs) (revision b39380e3c212109818587975e3c75acc508d5d2a) @@ -33,11 +33,20 @@ /// Creates a new instance of . /// public TestDuneLocationCalculationOutput() + : this(0, 0, 0) {} + + /// + /// Creates a new instance of . + /// + /// The water level of the calculation. + /// The wave height of the calculation. + /// The wave period of the calculation. + public TestDuneLocationCalculationOutput(double waterLevel, double waveHeight, double wavePeriod) : base(CalculationConvergence.CalculatedConverged, new ConstructionProperties { - WaterLevel = 0, - WavePeriod = 0, - WaveHeight = 0, + WaterLevel = waterLevel, + WavePeriod = wavePeriod, + WaveHeight = waveHeight, TargetProbability = 0, CalculatedReliability = 0, TargetReliability = 0,