Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Integration.Test/HeightStructuresCalculationActivityIntegrationTest.cs =================================================================== diff -u -r0ce2329213d6984c6992ec20319265546692a0b4 -re4f385d190e4abb05aa4b5e62b8a08fc7ffa9ee1 --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Integration.Test/HeightStructuresCalculationActivityIntegrationTest.cs (.../HeightStructuresCalculationActivityIntegrationTest.cs) (revision 0ce2329213d6984c6992ec20319265546692a0b4) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Integration.Test/HeightStructuresCalculationActivityIntegrationTest.cs (.../HeightStructuresCalculationActivityIntegrationTest.cs) (revision e4f385d190e4abb05aa4b5e62b8a08fc7ffa9ee1) @@ -338,13 +338,16 @@ var assessmentSection = new AssessmentSection(AssessmentSectionComposition.Dike) { - HydraulicBoundaryDatabase = new HydraulicBoundaryDatabase(true, validPreprocessorDirectory) + HydraulicBoundaryDatabase = new HydraulicBoundaryDatabase { FilePath = validFilePath, Locations = { new HydraulicBoundaryLocation(1300001, string.Empty, 0, 0) - } + }, + CanUsePreprocessor = true, + UsePreprocessor = true, + PreprocessorDirectory = validPreprocessorDirectory } }; @@ -380,13 +383,16 @@ var assessmentSection = new AssessmentSection(AssessmentSectionComposition.Dike) { - HydraulicBoundaryDatabase = new HydraulicBoundaryDatabase(false, "InvalidPreprocessorDirectory") + HydraulicBoundaryDatabase = new HydraulicBoundaryDatabase { FilePath = validFilePath, Locations = { new HydraulicBoundaryLocation(1300001, string.Empty, 0, 0) - } + }, + CanUsePreprocessor = true, + UsePreprocessor = false, + PreprocessorDirectory = "InvalidPreprocessorDirectory" } };