public void InschrijvenGestoptTest()
        {
            IAutorisatieManager     autorisatieMgr     = null;                                                                                                                                                  // TODO: Initialize to an appropriate value
            IVerzekeringenManager   verzekeringenMgr   = null;                                                                                                                                                  // TODO: Initialize to an appropriate value
            ILedenManager           ledenMgr           = null;                                                                                                                                                  // TODO: Initialize to an appropriate value
            IGroepsWerkJarenManager groepsWerkJarenMgr = null;                                                                                                                                                  // TODO: Initialize to an appropriate value
            IGroepenManager         groepenMgr         = null;                                                                                                                                                  // TODO: Initialize to an appropriate value
            IFunctiesManager        functiesMgr        = null;                                                                                                                                                  // TODO: Initialize to an appropriate value
            IRepositoryProvider     repositoryProvider = null;                                                                                                                                                  // TODO: Initialize to an appropriate value
            ILedenSync         ledenSync         = null;                                                                                                                                                        // TODO: Initialize to an appropriate value
            IVerzekeringenSync verzekeringenSync = null;                                                                                                                                                        // TODO: Initialize to an appropriate value
            LedenService       target            = new LedenService(autorisatieMgr, verzekeringenMgr, ledenMgr, groepsWerkJarenMgr, groepenMgr, functiesMgr, repositoryProvider, ledenSync, verzekeringenSync); // TODO: Initialize to an appropriate value

            InTeSchrijvenLid[] inschrijfInfo         = null;                                                                                                                                                    // TODO: Initialize to an appropriate value
            string             foutBerichten         = string.Empty;                                                                                                                                            // TODO: Initialize to an appropriate value
            string             foutBerichtenExpected = string.Empty;                                                                                                                                            // TODO: Initialize to an appropriate value
            IEnumerable <int>  expected = null;                                                                                                                                                                 // TODO: Initialize to an appropriate value
            IEnumerable <int>  actual;

            actual = target.Inschrijven(inschrijfInfo, out foutBerichten);
            Assert.AreEqual(foutBerichtenExpected, foutBerichten);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }