public void RunShouldCallConfigureContainer() { var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.Run(); Assert.IsTrue(bootstrapper.ConfigureContainerCalled); }
public void RunShouldCallCreateLogger() { var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.Run(); Assert.IsTrue(bootstrapper.CreateLoggerCalled); }
public void RunShouldCallConfigureModuleCatalog() { var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.Run(); Assert.IsTrue(bootstrapper.ConfigureModuleCatalogCalled); }
public void RunShouldCallConfigureViewModelLocator() { var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.Run(); Assert.IsTrue(bootstrapper.ConfigureViewModelLocatorCalled); }
public void RunConfiguresServiceLocatorProvider() { var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.Run(); Assert.IsTrue(Microsoft.Practices.ServiceLocation.ServiceLocator.Current is MefServiceLocatorAdapter); }
public void ContainerDefaultsToNull() { var bootstrapper = new DefaultMefBootstrapper(); var container = bootstrapper.BaseContainer; Assert.IsNull(container); }
public void RunShouldCallCreateAggregateCatalog() { var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.Run(); Assert.IsTrue(bootstrapper.CreateAggregateCatalogCalled); }
public void RunShouldCallConfigureDefaultRegionBehaviors() { var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.Run(); Assert.IsTrue(bootstrapper.ConfigureDefaultRegionBehaviorsCalled); }
public void CreateContainerShouldNotInitializeContainerProviders() { var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.CallCreateContainer(); Assert.AreEqual(0, bootstrapper.BaseContainer.Providers.Count); }
public void CreateAggregateCatalogShouldInitializeCatalog() { var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.CallCreateAggregateCatalog(); Assert.IsNotNull(bootstrapper.BaseAggregateCatalog); }
public void RunShouldAssignRegionManagerToReturnedShell() { var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.ShellObject = new UserControl(); bootstrapper.Run(); Assert.IsNotNull(RegionManager.GetRegionManager(bootstrapper.BaseShell)); }
public void CreateContainerShouldInitializeContainer() { var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.CallCreateContainer(); Assert.IsNotNull(bootstrapper.BaseContainer); Assert.IsInstanceOfType(bootstrapper.BaseContainer, typeof(CompositionContainer)); }
public void ConfigureContainerAddsAggregateCatalogToContainer() { var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.CallCreateLogger(); bootstrapper.CallCreateAggregateCatalog(); bootstrapper.CallCreateModuleCatalog(); bootstrapper.CallCreateContainer(); bootstrapper.CallConfigureContainer(); var returnedCatalog = bootstrapper.BaseContainer.GetExportedValue<AggregateCatalog>(); Assert.IsNotNull(returnedCatalog); Assert.AreEqual(typeof(AggregateCatalog), returnedCatalog.GetType()); }
public void ConfigureContainerAddsMefServiceLocatorAdapterToContainer() { var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.CallCreateLogger(); bootstrapper.CallCreateAggregateCatalog(); bootstrapper.CallCreateModuleCatalog(); bootstrapper.CallCreateContainer(); bootstrapper.CallConfigureContainer(); var returnedServiceLocatorAdapter = bootstrapper.BaseContainer.GetExportedValue<IServiceLocator>(); Assert.IsNotNull(returnedServiceLocatorAdapter); Assert.AreEqual(typeof(MefServiceLocatorAdapter), returnedServiceLocatorAdapter.GetType()); }
public void ConfigureContainerAddsLoggerFacadeToContainer() { var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.CallCreateLogger(); bootstrapper.CallCreateAggregateCatalog(); bootstrapper.CallCreateModuleCatalog(); bootstrapper.CallCreateContainer(); bootstrapper.CallConfigureContainer(); var returnedCatalog = bootstrapper.BaseContainer.GetExportedValue<ILoggerFacade>(); Assert.IsNotNull(returnedCatalog); Assert.IsTrue(returnedCatalog is ILoggerFacade); }
public void ConfigureContainerAddsAggregateCatalogToContainer() { var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.CallCreateLogger(); bootstrapper.CallCreateAggregateCatalog(); bootstrapper.CallCreateModuleCatalog(); bootstrapper.CallCreateContainer(); bootstrapper.CallConfigureContainer(); var returnedCatalog = bootstrapper.BaseContainer.GetExportedValue <AggregateCatalog>(); Assert.IsNotNull(returnedCatalog); Assert.AreEqual(typeof(AggregateCatalog), returnedCatalog.GetType()); }
public void ConfigureContainerAddsMefServiceLocatorAdapterToContainer() { var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.CallCreateLogger(); bootstrapper.CallCreateAggregateCatalog(); bootstrapper.CallCreateModuleCatalog(); bootstrapper.CallCreateContainer(); bootstrapper.CallConfigureContainer(); var returnedServiceLocatorAdapter = bootstrapper.BaseContainer.GetExportedValue <IServiceLocator>(); Assert.IsNotNull(returnedServiceLocatorAdapter); Assert.AreEqual(typeof(MefServiceLocatorAdapter), returnedServiceLocatorAdapter.GetType()); }
public void ConfigureContainerAddsLoggerFacadeToContainer() { var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.CallCreateLogger(); bootstrapper.CallCreateAggregateCatalog(); bootstrapper.CallCreateModuleCatalog(); bootstrapper.CallCreateContainer(); bootstrapper.CallConfigureContainer(); var returnedCatalog = bootstrapper.BaseContainer.GetExportedValue <ILoggerFacade>(); Assert.IsNotNull(returnedCatalog); Assert.IsTrue(returnedCatalog is ILoggerFacade); }
public void RunShouldCallTheMethodsInOrder() { var bootstrapper = new DefaultMefBootstrapper { ShellObject = new UserControl() }; bootstrapper.Run(); Assert.AreEqual("CreateLogger", bootstrapper.MethodCalls[0]); Assert.AreEqual("CreateModuleCatalog", bootstrapper.MethodCalls[1]); Assert.AreEqual("ConfigureModuleCatalog", bootstrapper.MethodCalls[2]); Assert.AreEqual("CreateAggregateCatalog", bootstrapper.MethodCalls[3]); Assert.AreEqual("ConfigureAggregateCatalog", bootstrapper.MethodCalls[4]); Assert.AreEqual("CreateContainer", bootstrapper.MethodCalls[5]); Assert.AreEqual("ConfigureContainer", bootstrapper.MethodCalls[6]); Assert.AreEqual("ConfigureServiceLocator", bootstrapper.MethodCalls[7]); Assert.AreEqual("ConfigureRegionAdapterMappings", bootstrapper.MethodCalls[8]); Assert.AreEqual("ConfigureDefaultRegionBehaviors", bootstrapper.MethodCalls[9]); Assert.AreEqual("RegisterFrameworkExceptionTypes", bootstrapper.MethodCalls[10]); Assert.AreEqual("CreateShell", bootstrapper.MethodCalls[11]); Assert.AreEqual("InitializeShell", bootstrapper.MethodCalls[12]); Assert.AreEqual("InitializeModules", bootstrapper.MethodCalls[13]); }
public void RunShouldCallTheMethodsInOrder() { var bootstrapper = new DefaultMefBootstrapper{ShellObject = new UserControl()}; bootstrapper.Run(); Assert.AreEqual("CreateLogger", bootstrapper.MethodCalls[0]); Assert.AreEqual("CreateModuleCatalog", bootstrapper.MethodCalls[1]); Assert.AreEqual("ConfigureModuleCatalog", bootstrapper.MethodCalls[2]); Assert.AreEqual("CreateAggregateCatalog", bootstrapper.MethodCalls[3]); Assert.AreEqual("ConfigureAggregateCatalog", bootstrapper.MethodCalls[4]); Assert.AreEqual("CreateContainer", bootstrapper.MethodCalls[5]); Assert.AreEqual("ConfigureContainer", bootstrapper.MethodCalls[6]); Assert.AreEqual("ConfigureServiceLocator", bootstrapper.MethodCalls[7]); Assert.AreEqual("ConfigureViewModelLocator", bootstrapper.MethodCalls[8]); Assert.AreEqual("ConfigureRegionAdapterMappings", bootstrapper.MethodCalls[9]); Assert.AreEqual("ConfigureDefaultRegionBehaviors", bootstrapper.MethodCalls[10]); Assert.AreEqual("RegisterFrameworkExceptionTypes", bootstrapper.MethodCalls[11]); Assert.AreEqual("CreateShell", bootstrapper.MethodCalls[12]); Assert.AreEqual("InitializeShell", bootstrapper.MethodCalls[13]); Assert.AreEqual("InitializeModules", bootstrapper.MethodCalls[14]); }
public void CanRunBootstrapper() { var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.Run(); }
public void RunShouldLogAboutInitializingModules() { const string expectedMessageText = "Initializing modules"; var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.Run(); Assert.IsTrue(bootstrapper.TestLog.LogMessages.Contains(expectedMessageText)); }
public void RunShouldLogAboutRunCompleting() { const string expectedMessageText = "Bootstrapper sequence completed"; var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.Run(); Assert.IsTrue(bootstrapper.TestLog.LogMessages.Contains(expectedMessageText)); }
public void RunShouldLogAboutInitializingTheShellIfShellCreated() { const string expectedMessageText = "Initializing shell"; var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.ShellObject = new UserControl(); bootstrapper.Run(); Assert.IsTrue(bootstrapper.TestLog.LogMessages.Contains(expectedMessageText)); }
public void RunShouldNotLogAboutInitializingTheShellIfShellIsNotCreated() { const string expectedMessageText = "Initializing shell"; var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.Run(); Assert.IsFalse(bootstrapper.TestLog.LogMessages.Contains(expectedMessageText)); }
public void RunShouldLogAboutCreatingTheShell() { const string expectedMessageText = "Creating shell"; var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.Run(); Assert.IsTrue(bootstrapper.TestLog.LogMessages.Contains(expectedMessageText)); }
public void RunShouldLogAboutRegisteringFrameworkExceptionTypes() { const string expectedMessageText = "Registering Framework Exception Types"; var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.Run(); Assert.IsTrue(bootstrapper.TestLog.LogMessages.Contains(expectedMessageText)); }
public void RunShouldLogAboutUpdatingRegions() { const string expectedMessageText = "Updating Regions."; var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.ShellObject = new UserControl(); bootstrapper.Run(); Assert.IsTrue(bootstrapper.TestLog.LogMessages.Contains(expectedMessageText)); }
public void RunShouldLogAboutConfiguringRegionBehaviors() { const string expectedMessageText = "Configuring default region behaviors"; var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.Run(); Assert.IsTrue(bootstrapper.TestLog.LogMessages.Contains(expectedMessageText)); }
public void RunShouldLogAboutConfiguringViewModelLocator() { const string expectedMessageText = "Configuring the ViewModelLocator to use MEF"; var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.Run(); Assert.IsTrue(bootstrapper.TestLog.LogMessages.Contains(expectedMessageText)); }
public void RunShouldLogAboutConfiguringContainer() { const string expectedMessageText = "Configuring MEF container"; var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.Run(); Assert.IsTrue(bootstrapper.TestLog.LogMessages.Contains(expectedMessageText)); }
public void AggregateCatalogDefaultsToNull() { var bootstrapper = new DefaultMefBootstrapper(); Assert.IsNull(bootstrapper.BaseAggregateCatalog); }
public void RunShouldCallInitializeModules() { var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.Run(); Assert.IsTrue(bootstrapper.InitializeModulesCalled); }
public void RunShouldLogLoggerCreationSuccess() { const string expectedMessageText = "Logger was created successfully."; var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.Run(); Assert.IsTrue(bootstrapper.TestLog.LogMessages.Contains(expectedMessageText)); }
public void RunShouldLogAboutAggregateCatalogCreation() { const string expectedMessageText = "Creating catalog for MEF"; var bootstrapper = new DefaultMefBootstrapper(); bootstrapper.Run(); Assert.IsTrue(bootstrapper.TestLog.LogMessages.Contains(expectedMessageText)); }