Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/RingtoetsPluginTest.cs =================================================================== diff -u -r51ddda3656dd349582d7790169a34080d79da68a -r86b2665e1dd51dc99d33568d1f4206f3da204254 --- Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/RingtoetsPluginTest.cs (.../RingtoetsPluginTest.cs) (revision 51ddda3656dd349582d7790169a34080d79da68a) +++ Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/RingtoetsPluginTest.cs (.../RingtoetsPluginTest.cs) (revision 86b2665e1dd51dc99d33568d1f4206f3da204254) @@ -52,6 +52,7 @@ using Ringtoets.GrassCoverErosionInwards.Forms.PresentationObjects; using Ringtoets.Integration.Data; using Ringtoets.Integration.Data.StandAlone.SectionResults; +using Ringtoets.Integration.Forms; using Ringtoets.Integration.Forms.PresentationObjects; using Ringtoets.Integration.Forms.PropertyClasses; using Ringtoets.Integration.Forms.Views; @@ -526,7 +527,7 @@ [Test] [Apartment(ApartmentState.STA)] // Due to creating fluent Ribbon - public void Activate_WithGui_DoesNotThrowException() + public void Activate_WithGui_ExpectedProperties() { // Setup var mockRepository = new MockRepository(); @@ -544,11 +545,11 @@ plugin.Gui = guiMock; // Call - TestDelegate test = () => plugin.Activate(); + plugin.Activate(); // Assert - Assert.DoesNotThrow(test); Assert.IsInstanceOf(plugin.RibbonCommandHandler); + Assert.IsInstanceOf(SettingsHelper.Instance); } mockRepository.VerifyAll();