Index: Riskeer/Common/test/Riskeer.Common.Forms.Test/PresentationObjects/StructuresOutputContextTest.cs =================================================================== diff -u -r1bc5f2299c66132f869d09d017327d80f4a9522c -r68f700f142fd089ccfde9d41facab9471e814bcd --- Riskeer/Common/test/Riskeer.Common.Forms.Test/PresentationObjects/StructuresOutputContextTest.cs (.../StructuresOutputContextTest.cs) (revision 1bc5f2299c66132f869d09d017327d80f4a9522c) +++ Riskeer/Common/test/Riskeer.Common.Forms.Test/PresentationObjects/StructuresOutputContextTest.cs (.../StructuresOutputContextTest.cs) (revision 68f700f142fd089ccfde9d41facab9471e814bcd) @@ -19,7 +19,6 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. -using System; using Core.Common.Controls.PresentationObjects; using NUnit.Framework; using Rhino.Mocks; @@ -48,23 +47,6 @@ mocks.VerifyAll(); } - [Test] - public void Constructor_AssessmentSectionNull_ThrowsArgumentNullException() - { - // Setup - var mocks = new MockRepository(); - var structuresCalculation = mocks.Stub(); - mocks.ReplayAll(); - - // Call - void Call() => new SimpleStructuresOutputContext(structuresCalculation); - - // Assert - var exception = Assert.Throws(Call); - Assert.AreEqual("assessmentSection", exception.ParamName); - mocks.VerifyAll(); - } - private class SimpleStructuresOutputContext : StructuresOutputContext { public SimpleStructuresOutputContext(IStructuresCalculation wrappedData)