Index: Application/Ringtoets/src/Application.Ringtoets/App.xaml.cs =================================================================== diff -u -re3f9dffa91a0def0b6e6bc7dfabef74cc64745c5 -r67ee2ee63517028ea64c697cc6e6bed5808c8b76 --- Application/Ringtoets/src/Application.Ringtoets/App.xaml.cs (.../App.xaml.cs) (revision e3f9dffa91a0def0b6e6bc7dfabef74cc64745c5) +++ Application/Ringtoets/src/Application.Ringtoets/App.xaml.cs (.../App.xaml.cs) (revision 67ee2ee63517028ea64c697cc6e6bed5808c8b76) @@ -86,7 +86,7 @@ /// /// Runs the main Ringtoets application. /// - public static void RunRingtoets() + private static void RunRingtoets() { var loaderDirectory = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location); if (loaderDirectory != null) Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/TreeNodeInfos/FailureMechanismContextTreeNodeInfoTest.cs =================================================================== diff -u -re3f9dffa91a0def0b6e6bc7dfabef74cc64745c5 -r67ee2ee63517028ea64c697cc6e6bed5808c8b76 --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/TreeNodeInfos/FailureMechanismContextTreeNodeInfoTest.cs (.../FailureMechanismContextTreeNodeInfoTest.cs) (revision e3f9dffa91a0def0b6e6bc7dfabef74cc64745c5) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/TreeNodeInfos/FailureMechanismContextTreeNodeInfoTest.cs (.../FailureMechanismContextTreeNodeInfoTest.cs) (revision 67ee2ee63517028ea64c697cc6e6bed5808c8b76) @@ -224,8 +224,10 @@ public void ChildNodeObjects_FailureMechanismIsRelevant_OutputNodeAddedForResult(Type t) { // Delegate actual test - MethodInfo method = GetType().GetMethod(TypeUtils.GetMemberName( - s => s.ChildNodeObjects_FailureMechanismIsRelevantWithSectionResults_OutputNodeAdded())); + MethodInfo method = GetType().GetMethod( + TypeUtils.GetMemberName( + s => s.ChildNodeObjects_FailureMechanismIsRelevantWithSectionResults_OutputNodeAdded()), + BindingFlags.NonPublic | BindingFlags.Instance); MethodInfo genericMethod = method.MakeGenericMethod(t); genericMethod.Invoke(this, null); }