Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.IO.Test/Configurations/HeightStructuresCalculationConfigurationImporterTest.cs =================================================================== diff -u -rde6048a31dbe63930a6ea68b04a4f37879333106 -r8cbb4a20c556600eeabe49b979ea5fce12e1a6b3 --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.IO.Test/Configurations/HeightStructuresCalculationConfigurationImporterTest.cs (.../HeightStructuresCalculationConfigurationImporterTest.cs) (revision de6048a31dbe63930a6ea68b04a4f37879333106) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.IO.Test/Configurations/HeightStructuresCalculationConfigurationImporterTest.cs (.../HeightStructuresCalculationConfigurationImporterTest.cs) (revision 8cbb4a20c556600eeabe49b979ea5fce12e1a6b3) @@ -240,7 +240,7 @@ string filePath = Path.Combine(importerPath, file); var calculationGroup = new CalculationGroup(); - var structure = new TestHeightStructure("kunstwerk1"); + var structure = new TestHeightStructure("kunstwerk1", "kunstwerk1"); var foreshoreProfile = new TestForeshoreProfile("profiel 1"); var importer = new HeightStructuresCalculationConfigurationImporter(filePath, @@ -310,7 +310,7 @@ { new Point2D(0, 3) }); - var structure = new TestHeightStructure("kunstwerk1"); + var structure = new TestHeightStructure("kunstwerk1", "kunstwerk1"); var importer = new HeightStructuresCalculationConfigurationImporter( filePath, calculationGroup, @@ -402,7 +402,7 @@ string filePath = Path.Combine(importerPath, "validConfigurationStochastMeansOnly.xml"); var calculationGroup = new CalculationGroup(); - var structure = new TestHeightStructure("kunstwerk1"); + var structure = new TestHeightStructure("kunstwerk1", "kunstwerk1"); var importer = new HeightStructuresCalculationConfigurationImporter( filePath, calculationGroup, @@ -471,7 +471,7 @@ string filePath = Path.Combine(importerPath, "validConfigurationStochastStandardDeviationVariationCoefficientOnly.xml"); var calculationGroup = new CalculationGroup(); - var structure = new TestHeightStructure("kunstwerk1"); + var structure = new TestHeightStructure("kunstwerk1", "kunstwerk1"); var importer = new HeightStructuresCalculationConfigurationImporter( filePath, calculationGroup, @@ -536,7 +536,7 @@ string filePath = Path.Combine(importerPath, file); var calculationGroup = new CalculationGroup(); - var structure = new TestHeightStructure("kunstwerk1"); + var structure = new TestHeightStructure("kunstwerk1", "kunstwerk1"); var importer = new HeightStructuresCalculationConfigurationImporter( filePath, calculationGroup, @@ -567,7 +567,7 @@ [TestCase("validConfigurationUnknownHydraulicBoundaryLocation.xml", "De locatie met hydraulische randvoorwaarden 'unknown' bestaat niet.")] [TestCase("validConfigurationUnknownStructure.xml", - "Het kunstwerk 'unknown' bestaat niet.")] + "Het kunstwerk met ID 'unknown' bestaat niet.")] public void Import_ValidConfigurationUnknownData_LogMessageAndContinueImport(string file, string expectedErrorMessage) { // Setup