Index: Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil/TestForeshoreProfile.cs =================================================================== diff -u -r2973c5f790a5131e427bd5f73e2a620044199639 -r64b9d05b572ff4878d9e74c6d1e4586e1b6d0a3d --- Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil/TestForeshoreProfile.cs (.../TestForeshoreProfile.cs) (revision 2973c5f790a5131e427bd5f73e2a620044199639) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil/TestForeshoreProfile.cs (.../TestForeshoreProfile.cs) (revision 64b9d05b572ff4878d9e74c6d1e4586e1b6d0a3d) @@ -33,6 +33,13 @@ /// /// Creates a new instance of . /// - public TestForeshoreProfile() : base(new Point2D(0, 0), Enumerable.Empty(), null, new ConstructionProperties()) {} + /// If true, create the ForeshoreProfile with a default . + public TestForeshoreProfile(bool useBreakWater = false) : base(new Point2D(0, 0), Enumerable.Empty(), useBreakWater ? new BreakWater(BreakWaterType.Dam, 10) : null, new ConstructionProperties()) { } + + /// + /// Creates a new instance of with a specified. + /// + /// The which needs to be set on the . + public TestForeshoreProfile(BreakWater breakWater) : base(new Point2D(0, 0), Enumerable.Empty(), breakWater, new ConstructionProperties()) {} } } \ No newline at end of file