Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/PresentationObjects/HeightStructureContextTest.cs =================================================================== diff -u -r8d0be9ae76a8444db63f3eeccf2c31399a0d0424 -r0b5415143ee123cb716065ae7b7681913d2587e2 --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/PresentationObjects/HeightStructureContextTest.cs (.../HeightStructureContextTest.cs) (revision 8d0be9ae76a8444db63f3eeccf2c31399a0d0424) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/PresentationObjects/HeightStructureContextTest.cs (.../HeightStructureContextTest.cs) (revision 0b5415143ee123cb716065ae7b7681913d2587e2) @@ -34,11 +34,11 @@ public class HeightStructureContextTest { [Test] - public void ParameteredConstructor_DefaultValues() + public void ParameteredConstructor_ExpectedValues() { // Setup var mocks = new MockRepository(); - var assessmentSectionMock = mocks.StrictMock(); + var assessmentSectionMock = mocks.Stub(); mocks.ReplayAll(); var heightStructures = new ObservableList(); Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/PresentationObjects/HeightStructuresContextTest.cs =================================================================== diff -u -r3500ad219742fca6d4a9057e8c92435dde8d8fc1 -r0b5415143ee123cb716065ae7b7681913d2587e2 --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/PresentationObjects/HeightStructuresContextTest.cs (.../HeightStructuresContextTest.cs) (revision 3500ad219742fca6d4a9057e8c92435dde8d8fc1) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/PresentationObjects/HeightStructuresContextTest.cs (.../HeightStructuresContextTest.cs) (revision 0b5415143ee123cb716065ae7b7681913d2587e2) @@ -41,7 +41,7 @@ { // Setup var mockRepository = new MockRepository(); - var assessmentSectionMock = mockRepository.Stub(); + var assessmentSectionMock = mockRepository.StrictMock(); mockRepository.ReplayAll(); var target = new ObservableObject(); @@ -63,7 +63,7 @@ { // Setup var mockRepository = new MockRepository(); - var assessmentSectionMock = mockRepository.Stub(); + var assessmentSectionMock = mockRepository.StrictMock(); mockRepository.ReplayAll(); var observableObject = new ObservableObject(); Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/TreeNodeInfos/HeightStructureContextTreeNodeInfoTest.cs =================================================================== diff -u -rb4895e698459bd12da570bcd7271b44e6290ee9f -r0b5415143ee123cb716065ae7b7681913d2587e2 --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/TreeNodeInfos/HeightStructureContextTreeNodeInfoTest.cs (.../HeightStructureContextTreeNodeInfoTest.cs) (revision b4895e698459bd12da570bcd7271b44e6290ee9f) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/TreeNodeInfos/HeightStructureContextTreeNodeInfoTest.cs (.../HeightStructureContextTreeNodeInfoTest.cs) (revision 0b5415143ee123cb716065ae7b7681913d2587e2) @@ -172,7 +172,7 @@ Assert.AreSame(heightStructure1, children.ElementAt(0)); Assert.AreSame(heightStructure2, children.ElementAt(1)); mocks.VerifyAll(); - } + } [Test] public void ForeColor_CollectionIsEmpty_ReturnGrayText() @@ -231,4 +231,4 @@ return null; } } -} +} \ No newline at end of file