Index: Ringtoets/Common/test/Ringtoets.Common.IO.Test/HydraulicBoundaryLocationsExporterTest.cs =================================================================== diff -u -r3865311e0dac61da3aa9ca1b4645c16b90290f1e -ra0eac32f05f503713d027f116b0194040418ceb2 --- Ringtoets/Common/test/Ringtoets.Common.IO.Test/HydraulicBoundaryLocationsExporterTest.cs (.../HydraulicBoundaryLocationsExporterTest.cs) (revision 3865311e0dac61da3aa9ca1b4645c16b90290f1e) +++ Ringtoets/Common/test/Ringtoets.Common.IO.Test/HydraulicBoundaryLocationsExporterTest.cs (.../HydraulicBoundaryLocationsExporterTest.cs) (revision a0eac32f05f503713d027f116b0194040418ceb2) @@ -21,6 +21,7 @@ using System; using System.IO; +using System.Linq; using System.Security.AccessControl; using Core.Common.Base.Data; using Core.Common.Base.IO; @@ -36,19 +37,11 @@ public void ParameteredConstructor_ValidParameters_ExpectedValues() { // Setup - var hydraulicBoundaryLocation = new HydraulicBoundaryLocation(123, "aName", 1.1, 2.2) - { - DesignWaterLevel = (RoundedDouble) 111.111, - WaveHeight = (RoundedDouble) 222.222 - }; string filePath = TestHelper.GetTestDataPath(TestDataPath.Ringtoets.HydraRing.IO, "test.shp"); // Call - var hydraulicBoundaryLocationsExporter = new HydraulicBoundaryLocationsExporter(new[] - { - hydraulicBoundaryLocation - }, filePath, "aName"); + var hydraulicBoundaryLocationsExporter = new HydraulicBoundaryLocationsExporter(Enumerable.Empty(), filePath, "aName"); // Assert Assert.IsInstanceOf(hydraulicBoundaryLocationsExporter);