Index: Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/AssessmentSectionTest.cs =================================================================== diff -u -rca0345432ea951a80e3e956a8d485840c0897e1d -r44cf5bc0f292171637b0c91b74005effe4d2798c --- Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/AssessmentSectionTest.cs (.../AssessmentSectionTest.cs) (revision ca0345432ea951a80e3e956a8d485840c0897e1d) +++ Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/AssessmentSectionTest.cs (.../AssessmentSectionTest.cs) (revision 44cf5bc0f292171637b0c91b74005effe4d2798c) @@ -114,6 +114,13 @@ Assert.AreEqual(composition, section.Composition); Assert.IsInstanceOf(section.FailureMechanismContribution); + HydraulicBoundaryDatabase hydraulicBoundaryDatabase = section.HydraulicBoundaryDatabase; + Assert.IsNotNull(hydraulicBoundaryDatabase); + CollectionAssert.IsEmpty(hydraulicBoundaryDatabase.Locations); + Assert.IsNull(hydraulicBoundaryDatabase.FilePath); + Assert.IsNull(hydraulicBoundaryDatabase.Version); + Assert.IsFalse(hydraulicBoundaryDatabase.CanUsePreprocessor); + CollectionAssert.IsEmpty(section.Piping.StochasticSoilModels); CollectionAssert.IsEmpty(section.Piping.SurfaceLines); @@ -436,21 +443,6 @@ Assert.AreEqual(double.NaN, assessmentSection.MacroStabilityInwards.MacroStabilityInwardsProbabilityAssessmentInput.SectionLength); } - [Test] - public void HydraulicBoundaryDatabase_SetNewValue_GetNewValue() - { - // Setup - var assessmentSection = new AssessmentSection(AssessmentSectionComposition.Dike); - - var hydraulicBoundaryDatabase = new HydraulicBoundaryDatabase(); - - // Call - assessmentSection.HydraulicBoundaryDatabase = hydraulicBoundaryDatabase; - - // Assert - Assert.AreSame(hydraulicBoundaryDatabase, assessmentSection.HydraulicBoundaryDatabase); - } - private IFailureMechanism[] GetExpectedContributingFailureMechanisms(AssessmentSection section) { return new IFailureMechanism[]