Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/PropertyInfos/StructuresOutputContextPropertyInfoTest.cs =================================================================== diff -u -rbf42d7f7a0afd26840ae4bbecd47ab417b2c4915 -r62c2ec9cb0416527762e077df380cbfb473dc9dc --- Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/PropertyInfos/StructuresOutputContextPropertyInfoTest.cs (.../StructuresOutputContextPropertyInfoTest.cs) (revision bf42d7f7a0afd26840ae4bbecd47ab417b2c4915) +++ Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/PropertyInfos/StructuresOutputContextPropertyInfoTest.cs (.../StructuresOutputContextPropertyInfoTest.cs) (revision 62c2ec9cb0416527762e077df380cbfb473dc9dc) @@ -72,13 +72,19 @@ mocks.ReplayAll(); // Call - IObjectProperties objectProperties = info.CreateInstance(new StructuresOutputContext(structuresCalculation, assessmentSection)); + IObjectProperties objectProperties = info.CreateInstance(new SimpleStructuresOutputContext(structuresCalculation, assessmentSection)); // Assert Assert.IsInstanceOf(objectProperties); Assert.AreSame(structuresOutput, objectProperties.Data); mocks.VerifyAll(); } + + private class SimpleStructuresOutputContext : StructuresOutputContext + { + public SimpleStructuresOutputContext(IStructuresCalculation wrappedData, IAssessmentSection assessmentSection) + : base(wrappedData, assessmentSection) { } + } } } \ No newline at end of file