Index: Ringtoets/Common/test/Ringtoets.Common.Forms.Test/TreeNodeInfos/RingtoetsContextMenuItemFactoryTest.cs =================================================================== diff -u -r42577bf0540d5d058e483721f0a7b7c967d5bd28 -r49fdb5e12fe699142cba3274e5569439a30f29e3 --- Ringtoets/Common/test/Ringtoets.Common.Forms.Test/TreeNodeInfos/RingtoetsContextMenuItemFactoryTest.cs (.../RingtoetsContextMenuItemFactoryTest.cs) (revision 42577bf0540d5d058e483721f0a7b7c967d5bd28) +++ Ringtoets/Common/test/Ringtoets.Common.Forms.Test/TreeNodeInfos/RingtoetsContextMenuItemFactoryTest.cs (.../RingtoetsContextMenuItemFactoryTest.cs) (revision 49fdb5e12fe699142cba3274e5569439a30f29e3) @@ -630,7 +630,7 @@ var input = mocks.StrictMock(); input.Expect(i => i.ForeshoreProfile).Return(new TestForeshoreProfile()); input.Expect(i => i.IsForeshoreProfileInputSynchronized).Return(false); - calculationMock.Expect(c => c.InputParameters).Return(input); + calculationMock.Expect(c => c.InputParameters).Return(input).Repeat.Any(); var inquiryHelperMock = mocks.StrictMock(); mocks.ReplayAll(); @@ -656,7 +656,7 @@ var input = mocks.StrictMock(); input.Expect(i => i.ForeshoreProfile).Return(new TestForeshoreProfile()); input.Expect(i => i.IsForeshoreProfileInputSynchronized).Return(false); - calculationMock.Expect(c => c.InputParameters).Return(input); + calculationMock.Expect(c => c.InputParameters).Return(input).Repeat.Any(); calculationMock.Expect(c => c.HasOutput).Return(false); var inquiryHelperMock = mocks.StrictMock(); mocks.ReplayAll(); @@ -689,7 +689,7 @@ var input = mocks.StrictMock(); input.Expect(i => i.ForeshoreProfile).Return(new TestForeshoreProfile()); input.Expect(i => i.IsForeshoreProfileInputSynchronized).Return(false); - calculationMock.Expect(c => c.InputParameters).Return(input); + calculationMock.Expect(c => c.InputParameters).Return(input).Repeat.Any(); calculationMock.Expect(c => c.HasOutput).Return(true); var inquiryHelperMock = mocks.StrictMock(); inquiryHelperMock.Expect(i => i.InquireContinuation(inquireContinuationMessage)).Return(false); @@ -723,7 +723,7 @@ var input = mocks.StrictMock(); input.Expect(i => i.ForeshoreProfile).Return(new TestForeshoreProfile()); input.Expect(i => i.IsForeshoreProfileInputSynchronized).Return(false); - calculationMock.Expect(c => c.InputParameters).Return(input); + calculationMock.Expect(c => c.InputParameters).Return(input).Repeat.Any(); calculationMock.Expect(c => c.HasOutput).Return(true); var inquiryHelperMock = mocks.StrictMock(); inquiryHelperMock.Expect(i => i.InquireContinuation(inquireContinuationMessage)).Return(true);