Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructure.cs =================================================================== diff -u -r2956b333ae2eca4e763754a548fc964f413058a7 -r3500ad219742fca6d4a9057e8c92435dde8d8fc1 --- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructure.cs (.../HeightStructure.cs) (revision 2956b333ae2eca4e763754a548fc964f413058a7) +++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructure.cs (.../HeightStructure.cs) (revision 3500ad219742fca6d4a9057e8c92435dde8d8fc1) @@ -22,7 +22,7 @@ namespace Ringtoets.HeightStructures.Data { /// - /// Definition of a height structures profile for the . + /// Definition of a height structure for the . /// public class HeightStructure { Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructuresFailureMechanism.cs =================================================================== diff -u -rcd4c32e6c897ceff2c5ae483e3bfb586ab9b6598 -r3500ad219742fca6d4a9057e8c92435dde8d8fc1 --- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructuresFailureMechanism.cs (.../HeightStructuresFailureMechanism.cs) (revision cd4c32e6c897ceff2c5ae483e3bfb586ab9b6598) +++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructuresFailureMechanism.cs (.../HeightStructuresFailureMechanism.cs) (revision 3500ad219742fca6d4a9057e8c92435dde8d8fc1) @@ -64,7 +64,7 @@ public GeneralHeightStructuresInput GeneralInput { get; private set; } /// - /// Gets the available height structure within the scope of the height structure failure mechanism + /// Gets the available height structure of this instance /// public ObservableList HeightStructures { get; private set; } Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PresentationObjects/HeightStructureContext.cs =================================================================== diff -u -r84839b3ebb20766ad68c4de6bc77e987b62bc7c9 -r3500ad219742fca6d4a9057e8c92435dde8d8fc1 --- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PresentationObjects/HeightStructureContext.cs (.../HeightStructureContext.cs) (revision 84839b3ebb20766ad68c4de6bc77e987b62bc7c9) +++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PresentationObjects/HeightStructureContext.cs (.../HeightStructureContext.cs) (revision 3500ad219742fca6d4a9057e8c92435dde8d8fc1) @@ -35,9 +35,9 @@ /// /// Creates an instance of /// - /// The collection to update - /// The assessment section - /// Thrown when any of the input arguments are null + /// The wrapped containing + /// The assessment section which the height structures belong to + /// Thrown when any of the input arguments are null public HeightStructureContext(ObservableList heightStructures, IAssessmentSection assessmentSection) : base(heightStructures) { @@ -49,6 +49,9 @@ AssessmentSection = assessmentSection; } + /// + /// Gets the assessment section of this instance + /// public IAssessmentSection AssessmentSection { get; private set; } } } \ No newline at end of file Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/PresentationObjects/HeightStructuresContextTest.cs =================================================================== diff -u -rce31448a066c084f755439f3e7d453bfb042b291 -r3500ad219742fca6d4a9057e8c92435dde8d8fc1 --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/PresentationObjects/HeightStructuresContextTest.cs (.../HeightStructuresContextTest.cs) (revision ce31448a066c084f755439f3e7d453bfb042b291) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/PresentationObjects/HeightStructuresContextTest.cs (.../HeightStructuresContextTest.cs) (revision 3500ad219742fca6d4a9057e8c92435dde8d8fc1) @@ -41,7 +41,7 @@ { // Setup var mockRepository = new MockRepository(); - var assessmentSectionMock = mockRepository.StrictMock(); + var assessmentSectionMock = mockRepository.Stub(); mockRepository.ReplayAll(); var target = new ObservableObject(); @@ -63,7 +63,7 @@ { // Setup var mockRepository = new MockRepository(); - var assessmentSectionMock = mockRepository.StrictMock(); + var assessmentSectionMock = mockRepository.Stub(); mockRepository.ReplayAll(); var observableObject = new ObservableObject(); Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Plugin.Test/HeightStructuresPluginTest.cs =================================================================== diff -u -rcd4c32e6c897ceff2c5ae483e3bfb586ab9b6598 -r3500ad219742fca6d4a9057e8c92435dde8d8fc1 --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Plugin.Test/HeightStructuresPluginTest.cs (.../HeightStructuresPluginTest.cs) (revision cd4c32e6c897ceff2c5ae483e3bfb586ab9b6598) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Plugin.Test/HeightStructuresPluginTest.cs (.../HeightStructuresPluginTest.cs) (revision 3500ad219742fca6d4a9057e8c92435dde8d8fc1) @@ -137,7 +137,7 @@ } [Test] - public void GetFileInfos_Always_ReturnsExpectedFileInfos() + public void GetFileInfos_Always_ReturnsExpectedImportInfos() { // Setup var mocks = new MockRepository();