Index: Ringtoets/Common/test/Ringtoets.Common.Forms.Test/PresentationObjects/ProbabilityFailureMechanismSectionResultContextTest.cs =================================================================== diff -u -rf1c2db8c066ce430155473bfb57ccfaccb64c035 -rf603458169b1e2544bc933b05f169cc1637d59b2 --- Ringtoets/Common/test/Ringtoets.Common.Forms.Test/PresentationObjects/ProbabilityFailureMechanismSectionResultContextTest.cs (.../ProbabilityFailureMechanismSectionResultContextTest.cs) (revision f1c2db8c066ce430155473bfb57ccfaccb64c035) +++ Ringtoets/Common/test/Ringtoets.Common.Forms.Test/PresentationObjects/ProbabilityFailureMechanismSectionResultContextTest.cs (.../ProbabilityFailureMechanismSectionResultContextTest.cs) (revision f603458169b1e2544bc933b05f169cc1637d59b2) @@ -20,8 +20,7 @@ // All rights reserved. using System; -using System.Collections.Generic; -using System.Linq; +using Core.Common.Base; using NUnit.Framework; using Rhino.Mocks; using Ringtoets.Common.Data.AssessmentSection; @@ -38,8 +37,8 @@ public void Constructor_AssessmentSectionNull_ThrowsArgumentNullException() { // Call - TestDelegate call = () => new ProbabilityFailureMechanismSectionResultContext(Enumerable.Empty(), - new TestFailureMechanism(), null); + TestDelegate call = () => new ProbabilityFailureMechanismSectionResultContext( + new ObservableList(), new TestFailureMechanism(), null); // Assert var exception = Assert.Throws(call); @@ -54,7 +53,7 @@ var assessmentSection = mocks.Stub(); mocks.ReplayAll(); - IEnumerable sectionResults = Enumerable.Empty(); + IObservableEnumerable sectionResults = new ObservableList(); var failureMechanism = new TestFailureMechanism(); // Call