Index: Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/TestCalculationWithForeshoreProfile.cs =================================================================== diff -u -r38bc3bb60b50bdfb98f76be1e03f6d663733008d -rc37f276833a0c2638b9514f528f3434c8d68199c --- Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/TestCalculationWithForeshoreProfile.cs (.../TestCalculationWithForeshoreProfile.cs) (revision 38bc3bb60b50bdfb98f76be1e03f6d663733008d) +++ Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/TestCalculationWithForeshoreProfile.cs (.../TestCalculationWithForeshoreProfile.cs) (revision c37f276833a0c2638b9514f528f3434c8d68199c) @@ -21,6 +21,7 @@ using System; using Core.Common.Base; +using Core.Common.Base.Data; using Ringtoets.Common.Data.Calculation; using Ringtoets.Common.Data.DikeProfiles; @@ -102,9 +103,21 @@ /// /// A simple input class with a . /// - public class TestCalculationInputWithForeshoreProfile : ICalculationInput, IHasForeshoreProfile + public class TestCalculationInputWithForeshoreProfile : ICalculationInput, IUseForeshore, IHasForeshoreProfile { + public ForeshoreProfile ForeshoreProfile { get; set; } + public bool IsForeshoreProfileInputSynchronized { get; } + public bool UseForeshore { get; set; } + + public RoundedPoint2DCollection ForeshoreGeometry + { + get + { + return ForeshoreProfile?.Geometry; + } + } + public void Attach(IObserver observer) { throw new NotImplementedException(); @@ -120,8 +133,6 @@ throw new NotImplementedException(); } - public ForeshoreProfile ForeshoreProfile { get; set; } - public bool IsForeshoreProfileInputSynchronized { get; } public void SynchronizeForeshoreProfileInput() { throw new NotImplementedException();