当前位置: 首页>>代码示例>>C#>>正文


C# DefaultMefBootstrapper.Run方法代码示例

本文整理汇总了C#中Microsoft.Practices.Prism.MefExtensions.Tests.DefaultMefBootstrapper.Run方法的典型用法代码示例。如果您正苦于以下问题:C# DefaultMefBootstrapper.Run方法的具体用法?C# DefaultMefBootstrapper.Run怎么用?C# DefaultMefBootstrapper.Run使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Microsoft.Practices.Prism.MefExtensions.Tests.DefaultMefBootstrapper的用法示例。


在下文中一共展示了DefaultMefBootstrapper.Run方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: RunShouldCallCreateLogger

        public void RunShouldCallCreateLogger()
        {
            var bootstrapper = new DefaultMefBootstrapper();
            bootstrapper.Run();

            Assert.IsTrue(bootstrapper.CreateLoggerCalled);
        }
开发者ID:xperiandri,项目名称:PortablePrism,代码行数:7,代码来源:MefBootstrapperRunMethodFixture.cs

示例2: RunShouldCallConfigureAggregateCatalog

        public void RunShouldCallConfigureAggregateCatalog()
        {
            var bootstrapper = new DefaultMefBootstrapper();
            bootstrapper.Run();

            Assert.IsTrue(bootstrapper.ConfigureAggregateCatalogCalled);
        }
开发者ID:selvendiranj,项目名称:compositewpf-copy,代码行数:7,代码来源:MefBootstrapperRunMethodFixture.cs

示例3: RunShouldCallCreateModuleCatalog

        public void RunShouldCallCreateModuleCatalog()
        {
            var bootstrapper = new DefaultMefBootstrapper();
            bootstrapper.Run();

            Assert.IsTrue(bootstrapper.CreateModuleCatalogCalled);
        }
开发者ID:xperiandri,项目名称:PortablePrism,代码行数:7,代码来源:MefBootstrapperRunMethodFixture.cs

示例4: RunConfiguresServiceLocatorProvider

        public void RunConfiguresServiceLocatorProvider()
        {
            var bootstrapper = new DefaultMefBootstrapper();
            bootstrapper.Run();

            Assert.IsTrue(ServiceLocation.ServiceLocator.Current is MefServiceLocatorAdapter);
        }
开发者ID:xperiandri,项目名称:PortablePrism,代码行数:7,代码来源:MefBootstrapperRunMethodFixture.cs

示例5: RunShouldCallInitializeModules

        public void RunShouldCallInitializeModules()
        {
            var bootstrapper = new DefaultMefBootstrapper();
            bootstrapper.Run();

            Assert.IsTrue(bootstrapper.InitializeModulesCalled);
        }
开发者ID:xperiandri,项目名称:PortablePrism,代码行数:7,代码来源:MefBootstrapperRunMethodFixture.cs

示例6: RegionNavigationJournalEntryIsRegisteredWithContainer

        public void RegionNavigationJournalEntryIsRegisteredWithContainer()
        {
            var bootstrapper = new DefaultMefBootstrapper();
            bootstrapper.Run();

            var actual1 = bootstrapper.BaseContainer.GetExportedValue<IRegionNavigationJournalEntry>();
            var actual2 = bootstrapper.BaseContainer.GetExportedValue<IRegionNavigationJournalEntry>();

            Assert.IsNotNull(actual1);
            Assert.IsNotNull(actual2);
            Assert.AreNotSame(actual1, actual2);
        }
开发者ID:CarlosVV,项目名称:mediavf,代码行数:12,代码来源:MefBootstrapperFixture.cs

示例7: SingleIRegionBehaviorFactoryIsRegisteredWithContainer

        public void SingleIRegionBehaviorFactoryIsRegisteredWithContainer()
        {
            var bootstrapper = new DefaultMefBootstrapper();
            bootstrapper.Run();

            var exported = bootstrapper.BaseContainer.GetExportedValue<IRegionBehaviorFactory>();
            Assert.IsNotNull(exported);
        }
开发者ID:CarlosVV,项目名称:mediavf,代码行数:8,代码来源:MefBootstrapperFixture.cs

示例8: SingleSyncRegionContextWithHostBehaviorIsRegisteredWithContainer

        public void SingleSyncRegionContextWithHostBehaviorIsRegisteredWithContainer()
        {
            var bootstrapper = new DefaultMefBootstrapper();
            bootstrapper.Run();

            var exported = bootstrapper.BaseContainer.GetExportedValue<SyncRegionContextWithHostBehavior>();
            Assert.IsNotNull(exported);
        }
开发者ID:CarlosVV,项目名称:mediavf,代码行数:8,代码来源:MefBootstrapperFixture.cs

示例9: SingleBindRegionContextToDependencyObjectBehaviorIsRegisteredWithContainer

        public void SingleBindRegionContextToDependencyObjectBehaviorIsRegisteredWithContainer()
        {
            var bootstrapper = new DefaultMefBootstrapper();
            bootstrapper.Run();

            var exported = bootstrapper.BaseContainer.GetExportedValue<BindRegionContextToDependencyObjectBehavior>();
            Assert.IsNotNull(exported);
        }
开发者ID:CarlosVV,项目名称:mediavf,代码行数:8,代码来源:MefBootstrapperFixture.cs

示例10: SingleIModuleInitializerIsRegisteredWithContainer

        public void SingleIModuleInitializerIsRegisteredWithContainer()
        {
            var bootstrapper = new DefaultMefBootstrapper();
            bootstrapper.Run();

            var exported = bootstrapper.BaseContainer.GetExportedValue<IModuleInitializer>();
            Assert.IsNotNull(exported);
        }
开发者ID:CarlosVV,项目名称:mediavf,代码行数:8,代码来源:MefBootstrapperFixture.cs

示例11: RunShouldNotLogAboutInitializingTheShellIfShellIsNotCreated

        public void RunShouldNotLogAboutInitializingTheShellIfShellIsNotCreated()
        {
            const string expectedMessageText = "Initializing shell";
            var bootstrapper = new DefaultMefBootstrapper();
            bootstrapper.Run();

            Assert.IsFalse(bootstrapper.TestLog.LogMessages.Contains(expectedMessageText));
        }
开发者ID:xperiandri,项目名称:PortablePrism,代码行数:8,代码来源:MefBootstrapperRunMethodFixture.cs

示例12: RunShouldLogAboutInitializingTheShellIfShellCreated

        public async Task RunShouldLogAboutInitializingTheShellIfShellCreated()
        {
            await ExecuteOnUIThread(() =>
                {
                    const string expectedMessageText = "Initializing shell";
                    var bootstrapper = new DefaultMefBootstrapper() { ShellObject = new UserControl() };

                    bootstrapper.Run();

                    Assert.IsTrue(bootstrapper.TestLog.LogMessages.Contains(expectedMessageText));
                });
        }
开发者ID:xperiandri,项目名称:PortablePrism,代码行数:12,代码来源:MefBootstrapperRunMethodFixture.cs

示例13: RunShouldLogAboutCreatingTheShell

        public void RunShouldLogAboutCreatingTheShell()
        {
            const string expectedMessageText = "Creating shell";
            var bootstrapper = new DefaultMefBootstrapper();
            bootstrapper.Run();

            Assert.IsTrue(bootstrapper.TestLog.LogMessages.Contains(expectedMessageText));
        }
开发者ID:xperiandri,项目名称:PortablePrism,代码行数:8,代码来源:MefBootstrapperRunMethodFixture.cs

示例14: RunShouldLogAboutRegisteringFrameworkExceptionTypes

        public void RunShouldLogAboutRegisteringFrameworkExceptionTypes()
        {
            const string expectedMessageText = "Registering Framework Exception Types";
            var bootstrapper = new DefaultMefBootstrapper();
            bootstrapper.Run();

            Assert.IsTrue(bootstrapper.TestLog.LogMessages.Contains(expectedMessageText));
        }
开发者ID:xperiandri,项目名称:PortablePrism,代码行数:8,代码来源:MefBootstrapperRunMethodFixture.cs

示例15: RunShouldLogAboutConfiguringContainer

        public void RunShouldLogAboutConfiguringContainer()
        {
            const string expectedMessageText = "Configuring MEF container";
            var bootstrapper = new DefaultMefBootstrapper();
            bootstrapper.Run();

            Assert.IsTrue(bootstrapper.TestLog.LogMessages.Contains(expectedMessageText));
        }
开发者ID:xperiandri,项目名称:PortablePrism,代码行数:8,代码来源:MefBootstrapperRunMethodFixture.cs


注:本文中的Microsoft.Practices.Prism.MefExtensions.Tests.DefaultMefBootstrapper.Run方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。