Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/TreeNodeInfos/DesignWaterLevelLocationsContextTreeNodeInfoTest.cs =================================================================== diff -u -r53bfde12ab449eba06567e6ff64627faec1d8026 -r44d4c114a254db9859fbf71812e599c468dcbe77 --- Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/TreeNodeInfos/DesignWaterLevelLocationsContextTreeNodeInfoTest.cs (.../DesignWaterLevelLocationsContextTreeNodeInfoTest.cs) (revision 53bfde12ab449eba06567e6ff64627faec1d8026) +++ Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/TreeNodeInfos/DesignWaterLevelLocationsContextTreeNodeInfoTest.cs (.../DesignWaterLevelLocationsContextTreeNodeInfoTest.cs) (revision 44d4c114a254db9859fbf71812e599c468dcbe77) @@ -138,7 +138,8 @@ } var nodeData = new DesignWaterLevelLocationsContext(new ObservableList(), - assessmentSection); + assessmentSection, + hbl => new HydraulicBoundaryLocationCalculation()); using (var treeViewControl = new TreeViewControl()) { @@ -170,7 +171,8 @@ IAssessmentSection assessmentSection = AssessmentSectionHelper.CreateAssessmentSectionStub(mockRepository); var nodeData = new DesignWaterLevelLocationsContext(new ObservableList(), - assessmentSection); + assessmentSection, + hbl => new HydraulicBoundaryLocationCalculation()); using (var treeViewControl = new TreeViewControl()) { @@ -210,7 +212,8 @@ IAssessmentSection assessmentSection = AssessmentSectionHelper.CreateAssessmentSectionStub(null, mockRepository, "invalidFilePath"); var nodeData = new DesignWaterLevelLocationsContext(assessmentSection.HydraulicBoundaryDatabase.Locations, - assessmentSection); + assessmentSection, + hbl => new HydraulicBoundaryLocationCalculation()); using (var treeViewControl = new TreeViewControl()) { @@ -256,7 +259,8 @@ assessmentSection.Stub(a => a.HydraulicBoundaryDatabase).Return(hydraulicBoundaryDatabase); var nodeData = new DesignWaterLevelLocationsContext(hydraulicBoundaryDatabase.Locations, - assessmentSection); + assessmentSection, + hbl => new HydraulicBoundaryLocationCalculation()); using (var treeViewControl = new TreeViewControl()) { @@ -307,7 +311,8 @@ }; var context = new DesignWaterLevelLocationsContext(assessmentSection.HydraulicBoundaryDatabase.Locations, - assessmentSection); + assessmentSection, + hbl => new HydraulicBoundaryLocationCalculation()); using (var treeViewControl = new TreeViewControl()) { @@ -376,7 +381,8 @@ }; var context = new DesignWaterLevelLocationsContext(assessmentSection.HydraulicBoundaryDatabase.Locations, - assessmentSection); + assessmentSection, + hbl => new HydraulicBoundaryLocationCalculation()); using (var treeViewControl = new TreeViewControl()) { @@ -444,7 +450,8 @@ }; var context = new DesignWaterLevelLocationsContext(assessmentSection.HydraulicBoundaryDatabase.Locations, - assessmentSection); + assessmentSection, + hbl => new HydraulicBoundaryLocationCalculation()); using (var treeViewControl = new TreeViewControl()) { @@ -509,7 +516,8 @@ }; var context = new DesignWaterLevelLocationsContext(assessmentSection.HydraulicBoundaryDatabase.Locations, - assessmentSection); + assessmentSection, + hbl => new HydraulicBoundaryLocationCalculation()); using (var treeViewControl = new TreeViewControl()) {