Index: Ringtoets/Revetment/test/Ringtoets.Revetment.Forms.TestUtil.Test/TestWaveConditionsInputContextTest.cs =================================================================== diff -u -rbda1b9542e899c34dfa695d5e14411a4f52de809 -r72ab8a712b043d82de3925e0bffad7aea60cbf19 --- Ringtoets/Revetment/test/Ringtoets.Revetment.Forms.TestUtil.Test/TestWaveConditionsInputContextTest.cs (.../TestWaveConditionsInputContextTest.cs) (revision bda1b9542e899c34dfa695d5e14411a4f52de809) +++ Ringtoets/Revetment/test/Ringtoets.Revetment.Forms.TestUtil.Test/TestWaveConditionsInputContextTest.cs (.../TestWaveConditionsInputContextTest.cs) (revision 72ab8a712b043d82de3925e0bffad7aea60cbf19) @@ -20,6 +20,8 @@ // All rights reserved. using NUnit.Framework; +using Rhino.Mocks; +using Ringtoets.Common.Data.AssessmentSection; using Ringtoets.Common.Data.DikeProfiles; using Ringtoets.Common.Data.Hydraulics; using Ringtoets.Common.Data.TestUtil; @@ -74,9 +76,12 @@ public void Constructor_WithAllParameters_ExpectedValues() { // Setup + var mocks = new MockRepository(); + var assessmentSection = mocks.Stub(); + mocks.ReplayAll(); + var waveConditionsInput = new WaveConditionsInput(); var calculation = new TestWaveConditionsCalculation(); - var assessmentSection = new ObservableTestAssessmentSectionStub(); var profiles = new ForeshoreProfile[0]; var locations = new HydraulicBoundaryLocation[0]; @@ -94,6 +99,7 @@ Assert.AreSame(assessmentSection, context.AssessmentSection); Assert.AreSame(profiles, context.ForeshoreProfiles); Assert.AreSame(locations, context.HydraulicBoundaryLocations); + mocks.VerifyAll(); } } } \ No newline at end of file