Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Plugin.Test/ViewInfos/MacroStabilityInwardsCalculationsViewInfoTest.cs =================================================================== diff -u -rcd90ebf744fb74f0d4b0dd6ee06f9c39b5faf213 -r3178e116f5e59e03078d465efeb303c5e232c7bf --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Plugin.Test/ViewInfos/MacroStabilityInwardsCalculationsViewInfoTest.cs (.../MacroStabilityInwardsCalculationsViewInfoTest.cs) (revision cd90ebf744fb74f0d4b0dd6ee06f9c39b5faf213) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Plugin.Test/ViewInfos/MacroStabilityInwardsCalculationsViewInfoTest.cs (.../MacroStabilityInwardsCalculationsViewInfoTest.cs) (revision 3178e116f5e59e03078d465efeb303c5e232c7bf) @@ -305,19 +305,19 @@ public void AfterCreate_Always_SetsSpecificPropertiesToView() { // Setup - var viewMock = mocks.StrictMock(); + var view = mocks.StrictMock(); var assessmentSection = mocks.Stub(); - var failureMechanismMock = mocks.StrictMock(); - var calculationsGroupMock = mocks.StrictMock(); - var calculationGroupContext = new MacroStabilityInwardsCalculationGroupContext(calculationsGroupMock, Enumerable.Empty(), Enumerable.Empty(), failureMechanismMock, assessmentSection); + var failureMechanism = mocks.StrictMock(); + var calculationsGroup = mocks.StrictMock(); + var calculationGroupContext = new MacroStabilityInwardsCalculationGroupContext(calculationsGroup, Enumerable.Empty(), Enumerable.Empty(), failureMechanism, assessmentSection); - viewMock.Expect(v => v.AssessmentSection = assessmentSection); - viewMock.Expect(v => v.MacroStabilityInwardsFailureMechanism = failureMechanismMock); + view.Expect(v => v.AssessmentSection = assessmentSection); + view.Expect(v => v.MacroStabilityInwardsFailureMechanism = failureMechanism); mocks.ReplayAll(); // Call - info.AfterCreate(viewMock, calculationGroupContext); + info.AfterCreate(view, calculationGroupContext); // Assert mocks.VerifyAll();