Index: Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/GrassCoverErosionInwardsInputTest.cs =================================================================== diff -u -r7f9ffc9e3636023563eedd6cc95bad8c4b158324 -rcf913a00f5768780ab2f8bd8d5145069581a8068 --- Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/GrassCoverErosionInwardsInputTest.cs (.../GrassCoverErosionInwardsInputTest.cs) (revision 7f9ffc9e3636023563eedd6cc95bad8c4b158324) +++ Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Data.Test/GrassCoverErosionInwardsInputTest.cs (.../GrassCoverErosionInwardsInputTest.cs) (revision cf913a00f5768780ab2f8bd8d5145069581a8068) @@ -19,10 +19,8 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. -using System; using Core.Common.Base; using Core.Common.Base.Data; -using Core.Common.Base.Geometry; using NUnit.Framework; using Ringtoets.Common.Data.Calculation; using Ringtoets.Common.Data.Probabilistics; @@ -86,36 +84,5 @@ CollectionAssert.IsEmpty(input.DikeGeometry); CollectionAssert.IsEmpty(input.ForeshoreGeometry); } - - [Test] - public void SetDikeGeometry_NullRoughnessProfileSections_ThrowsArgumentNullException() - { - // Setup - var input = new GrassCoverErosionInwardsInput(); - - // Call - TestDelegate test = () => input.SetDikeGeometry(null); - - // Assert - Assert.Throws(test); - } - - [Test] - public void SetDikeGeometry_ValidGeometry_ReturnsExpectedValues() - { - // Setup - var input = new GrassCoverErosionInwardsInput(); - var sections = new[] - { - new RoughnessProfileSection(new Point2D(1.1, 2.2), new Point2D(3.3, 4.4), 1.1), - new RoughnessProfileSection(new Point2D(3.3, 4.4), new Point2D(5.5, 6.6), 2.2) - }; - - // Call - input.SetDikeGeometry(sections); - - // Assert - Assert.AreEqual(sections, input.DikeGeometry); - } } } \ No newline at end of file