Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/ViewInfos/GeneralResultFaultTreeIllustrationPointViewInfoTest.cs =================================================================== diff -u -rbf42d7f7a0afd26840ae4bbecd47ab417b2c4915 -r62c2ec9cb0416527762e077df380cbfb473dc9dc --- Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/ViewInfos/GeneralResultFaultTreeIllustrationPointViewInfoTest.cs (.../GeneralResultFaultTreeIllustrationPointViewInfoTest.cs) (revision bf42d7f7a0afd26840ae4bbecd47ab417b2c4915) +++ Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/ViewInfos/GeneralResultFaultTreeIllustrationPointViewInfoTest.cs (.../GeneralResultFaultTreeIllustrationPointViewInfoTest.cs) (revision 62c2ec9cb0416527762e077df380cbfb473dc9dc) @@ -94,7 +94,7 @@ mocks.ReplayAll(); // Call - object viewData = info.GetViewData(new StructuresOutputContext(structuresCalculation, assessmentSection)); + object viewData = info.GetViewData(new SimpleStructuresOutputContext(structuresCalculation, assessmentSection)); // Assert Assert.AreSame(structuresCalculation, viewData); @@ -112,6 +112,12 @@ Assert.IsInstanceOf(view); } + private class SimpleStructuresOutputContext : StructuresOutputContext + { + public SimpleStructuresOutputContext(IStructuresCalculation wrappedData, IAssessmentSection assessmentSection) + : base(wrappedData, assessmentSection) {} + } + public abstract class ShouldCloseGeneralResultFaultTreeIllustrationPointViewForStructuresTester : ShouldCloseViewWithCalculationDataTester { protected override bool ShouldCloseMethod(IView view, object o)