Index: Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Plugin.Test/TreeNodeInfos/StabilityStoneCoverWaveConditionsInputContextTreeNodeInfoTest.cs =================================================================== diff -u -r2d006ceaaef282af15090fe5505ffeca58a291e0 -rbb80820ff4a4e09793da242cb7b36ca2bce59c32 --- Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Plugin.Test/TreeNodeInfos/StabilityStoneCoverWaveConditionsInputContextTreeNodeInfoTest.cs (.../StabilityStoneCoverWaveConditionsInputContextTreeNodeInfoTest.cs) (revision 2d006ceaaef282af15090fe5505ffeca58a291e0) +++ Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Plugin.Test/TreeNodeInfos/StabilityStoneCoverWaveConditionsInputContextTreeNodeInfoTest.cs (.../StabilityStoneCoverWaveConditionsInputContextTreeNodeInfoTest.cs) (revision bb80820ff4a4e09793da242cb7b36ca2bce59c32) @@ -87,8 +87,12 @@ var failureMechanism = new StabilityStoneCoverFailureMechanism(); - var input = new WaveConditionsInput(); - var context = new StabilityStoneCoverWaveConditionsInputContext(input, failureMechanism.ForeshoreProfiles, assessmentSection); + var calculation = new StabilityStoneCoverWaveConditionsCalculation(); + var context = new StabilityStoneCoverWaveConditionsInputContext( + calculation.InputParameters, + calculation, + failureMechanism.ForeshoreProfiles, + assessmentSection); using (var plugin = new StabilityStoneCoverPlugin()) { @@ -111,8 +115,12 @@ var failureMechanism = new StabilityStoneCoverFailureMechanism(); - var input = new WaveConditionsInput(); - var context = new StabilityStoneCoverWaveConditionsInputContext(input, failureMechanism.ForeshoreProfiles, assessmentSection); + var calculation = new StabilityStoneCoverWaveConditionsCalculation(); + var context = new StabilityStoneCoverWaveConditionsInputContext( + calculation.InputParameters, + calculation, + failureMechanism.ForeshoreProfiles, + assessmentSection); using (var plugin = new StabilityStoneCoverPlugin()) { @@ -136,8 +144,12 @@ var failureMechanism = new StabilityStoneCoverFailureMechanism(); - var input = new WaveConditionsInput(); - var context = new StabilityStoneCoverWaveConditionsInputContext(input, failureMechanism.ForeshoreProfiles, assessmentSection); + var calculation = new StabilityStoneCoverWaveConditionsCalculation(); + var context = new StabilityStoneCoverWaveConditionsInputContext( + calculation.InputParameters, + calculation, + failureMechanism.ForeshoreProfiles, + assessmentSection); var menuBuilder = mocks.StrictMock(); menuBuilder.Expect(mb => mb.AddPropertiesItem()).Return(menuBuilder);