Index: Ringtoets/Revetment/test/Ringtoets.Revetment.Data.TestUtil/TestWaveConditionsCalculation.cs =================================================================== diff -u -rc7069ba91ff360559c23076e7a3931dcacbacffa -r741860b313c16e7a2f918c734c85180886665a80 --- Ringtoets/Revetment/test/Ringtoets.Revetment.Data.TestUtil/TestWaveConditionsCalculation.cs (.../TestWaveConditionsCalculation.cs) (revision c7069ba91ff360559c23076e7a3931dcacbacffa) +++ Ringtoets/Revetment/test/Ringtoets.Revetment.Data.TestUtil/TestWaveConditionsCalculation.cs (.../TestWaveConditionsCalculation.cs) (revision 741860b313c16e7a2f918c734c85180886665a80) @@ -31,28 +31,23 @@ /// Creates a simple implementation for /// wave conditions, which can have an object set as output. /// - /// The type of the wave conditions input contained - /// by the test calculation. - public class TestWaveConditionsCalculation : Observable, ICalculation - where T : WaveConditionsInput + public class TestWaveConditionsCalculation : Observable, ICalculation { /// - /// Creates a new instance of . + /// Creates a new instance of . /// - /// The wave conditions input to set to - /// the calculation. - public TestWaveConditionsCalculation(T waveConditionsInput) + public TestWaveConditionsCalculation() { Name = RingtoetsCommonDataResources.Calculation_DefaultName; - InputParameters = waveConditionsInput; + InputParameters = new TestWaveConditionsInput(); } /// /// Gets or sets an object that represents some output of this calculation. /// public object Output { get; set; } - public T InputParameters { get; } + public TestWaveConditionsInput InputParameters { get; } public bool HasOutput {