Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/IntegrationTests/StorageSqLiteIntegrationTest.cs =================================================================== diff -u -re2e6d944af7b0cea6c9c34e77bd0644149526c37 -rff47dc9d3989152e8793676ec3e8375fe6e06fd7 --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/IntegrationTests/StorageSqLiteIntegrationTest.cs (.../StorageSqLiteIntegrationTest.cs) (revision e2e6d944af7b0cea6c9c34e77bd0644149526c37) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/IntegrationTests/StorageSqLiteIntegrationTest.cs (.../StorageSqLiteIntegrationTest.cs) (revision ff47dc9d3989152e8793676ec3e8375fe6e06fd7) @@ -217,10 +217,10 @@ Assert.NotNull(actualProject); Assert.AreNotSame(expectedProject, actualProject); - AssessmentSection[] expectedProjectAssessmentSections = expectedProject.AssessmentSections.ToArray(); - AssessmentSection[] actualProjectAssessmentSections = actualProject.AssessmentSections.ToArray(); - Assert.AreEqual(expectedProjectAssessmentSections.Length, actualProjectAssessmentSections.Length); - for (var i = 0; i < expectedProjectAssessmentSections.Length; i++) + IList expectedProjectAssessmentSections = expectedProject.AssessmentSections; + IList actualProjectAssessmentSections = actualProject.AssessmentSections; + Assert.AreEqual(expectedProjectAssessmentSections.Count, actualProjectAssessmentSections.Count); + for (var i = 0; i < expectedProjectAssessmentSections.Count; i++) { AssessmentSection expectedAssessmentSection = expectedProjectAssessmentSections[i]; AssessmentSection actualAssessmentSection = actualProjectAssessmentSections[i]; Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/RingtoetsSettingsHelper.cs =================================================================== diff -u -r37235d0863116292cc4b095dcf2d19cf6d14c6b2 -rff47dc9d3989152e8793676ec3e8375fe6e06fd7 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/RingtoetsSettingsHelper.cs (.../RingtoetsSettingsHelper.cs) (revision 37235d0863116292cc4b095dcf2d19cf6d14c6b2) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/RingtoetsSettingsHelper.cs (.../RingtoetsSettingsHelper.cs) (revision ff47dc9d3989152e8793676ec3e8375fe6e06fd7) @@ -30,14 +30,18 @@ public static class RingtoetsSettingsHelper { /// - /// Gets the common documents directory. + /// Gets the directory of the "NBPW" shape file within the common documents directory. /// - /// Directory path where the common documents can be found. + /// Directory path where the "NBPW" shape file can be found. public static string GetCommonDocumentsRingtoetsShapeFileDirectory() { return Path.Combine(GetCommonDocumentsRingtoetsDirectory(), "NBPW"); } + /// + /// Gets the "Ringtoets" folder within the common documents directory. + /// + /// Directory path where the "Ringtoets" folder within the common documents can be found. public static string GetCommonDocumentsRingtoetsDirectory() { return Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.CommonDocuments), "WTI", "Ringtoets"); Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/TreeNodeInfos/FailureMechanismContextTreeNodeInfoTest.cs =================================================================== diff -u -ra1ec5faebf7ccf8e67fa34a2b73cd1063ab48840 -rff47dc9d3989152e8793676ec3e8375fe6e06fd7 --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/TreeNodeInfos/FailureMechanismContextTreeNodeInfoTest.cs (.../FailureMechanismContextTreeNodeInfoTest.cs) (revision a1ec5faebf7ccf8e67fa34a2b73cd1063ab48840) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/TreeNodeInfos/FailureMechanismContextTreeNodeInfoTest.cs (.../FailureMechanismContextTreeNodeInfoTest.cs) (revision ff47dc9d3989152e8793676ec3e8375fe6e06fd7) @@ -483,9 +483,7 @@ mocks.VerifyAll(); } - /* Used in ChildNodeObjects_FailureMechanismIsRelevantWithDifferentFailureMechanismSectionResults_OutputNodeAdded(Type) */ - - public void ChildNodeObjects_FailureMechanismIsRelevantWithSectionResults_OutputNodeAdded() where T : FailureMechanismSectionResult + private void ChildNodeObjects_FailureMechanismIsRelevantWithSectionResults_OutputNodeAdded() where T : FailureMechanismSectionResult { // Setup var assessmentSection = mocks.Stub();