Index: Ringtoets/Revetment/test/Ringtoets.Revetment.Forms.TestUtil/TestWaveConditionsInputContext.cs
===================================================================
diff -u -r47e96226f7d6d9f700642731ba2232ff024f30a7 -r6c6101ac2da22f26fcf7151e012a985bd96fd896
--- Ringtoets/Revetment/test/Ringtoets.Revetment.Forms.TestUtil/TestWaveConditionsInputContext.cs (.../TestWaveConditionsInputContext.cs) (revision 47e96226f7d6d9f700642731ba2232ff024f30a7)
+++ Ringtoets/Revetment/test/Ringtoets.Revetment.Forms.TestUtil/TestWaveConditionsInputContext.cs (.../TestWaveConditionsInputContext.cs) (revision 6c6101ac2da22f26fcf7151e012a985bd96fd896)
@@ -24,34 +24,33 @@
using Ringtoets.Common.Data.Calculation;
using Ringtoets.Common.Data.DikeProfiles;
using Ringtoets.Common.Data.TestUtil;
-using Ringtoets.Revetment.Data;
using Ringtoets.Revetment.Data.TestUtil;
using Ringtoets.Revetment.Forms.PresentationObjects;
namespace Ringtoets.Revetment.Forms.TestUtil
{
///
- /// Simple implementation which can be used
+ /// Simple implementation which can be used
/// for test purposes.
///
- public class TestWaveConditionsInputContext : WaveConditionsInputContext
+ public class TestWaveConditionsInputContext : WaveConditionsInputContext
{
///
/// Creates a new .
///
- /// The wrapped .
- public TestWaveConditionsInputContext(WaveConditionsInput wrappedData)
- : this(wrappedData,
+ /// The wrapped wave conditions input.
+ public TestWaveConditionsInputContext(TestWaveConditionsInput wrappedData)
+ : this(wrappedData,
new ForeshoreProfile[0],
new AssessmentSectionStub()) {}
///
/// Creates a new .
///
- /// The wrapped .
+ /// The wrapped wave conditions input.
/// The foreshore profiles.
/// The assessment section.
- public TestWaveConditionsInputContext(WaveConditionsInput wrappedData,
+ public TestWaveConditionsInputContext(TestWaveConditionsInput wrappedData,
IEnumerable foreshoreProfiles,
IAssessmentSection assesmentSection)
: this(wrappedData,
@@ -62,12 +61,12 @@
///
/// Creates a new .
///
- /// The wrapped .
+ /// The wrapped wave conditions input.
/// The calculation.
/// The assessment section.
/// The foreshore profiles.
- public TestWaveConditionsInputContext(WaveConditionsInput wrappedData,
- ICalculation calculation,
+ public TestWaveConditionsInputContext(TestWaveConditionsInput wrappedData,
+ ICalculation calculation,
IAssessmentSection assessmentSection,
IEnumerable foreshoreProfiles)
: base(wrappedData, calculation, assessmentSection)