public void Initialize() { KernelScope = Resolver.BeginKernelScope(); Resolver.LoadModuleConfiguration <Blueprint>(); Resolver.GetConfigurator().Bind <ICodeInjector>().To <CSharpInjector>(LanguageType.CSharp); Resolver.GetConfigurator().Bind <ICodeInjector>().To <VbCodeInjector>(LanguageType.VisualBasic); }
public void Initialize() { KernelScope = Resolver.BeginKernelScope(); Resolver.LoadModuleConfiguration <Blueprint>(); Resolver.GetConfigurator().Bind <IFileTransfer>().To <FileTransfer>(TransferMethods.File); Resolver.GetConfigurator().Bind <IFileTransfer>().To <HttpFileTrasfer>(TransferMethods.Http); Resolver.GetConfigurator().Bind <IFileTransfer>().To <FtpTrasfer>(TransferMethods.Ftp); Resolver.GetConfigurator().Bind <IFileTransfer>().To <FileTransfer>(); Resolver.GetConfigurator().UnBind <ILogging>().AllAndBind().To <Log4NetLogging>(); Logging.ResetLogger(); }
public AutoFacIntegrationTests() { try { Resolver.LoadIocContainer(new AutoFacFactory()); } catch (Exception) { } KernelScope = Resolver.BeginKernelScope(); Resolver.LoadModuleConfiguration <AutoFacTestBindings>(); }
public void Initialize() { ContainerFactory.Current.KillAllInstances(); KernelScope = Resolver.BeginKernelScope(); Resolver.LoadModuleConfiguration <Blueprint>(); BatchProcessorFactory.BindKernel <CoordinatedData>() .SetBatchRepository <MemoryRepository>() .SetLogger <LoggerMock>() .SetCoordinator <ImportFirstLastName>() .SetCoordinator <EmailImporter>() .SetCoordinator <Synchronizer>() .SetCoordinator <Exporter>(); }
public void Initialize() { KernelScope = Resolver.BeginKernelScope(); Resolver.LoadModuleConfiguration <Blueprint>(); }
public ConfigSetTests() { KernelScope = Resolver.BeginKernelScope(); Resolver.LoadModuleConfiguration <TestConfigServiceBindings>(); }
public void Initialize() { ContainerFactory.Current.KillAllInstances(); KernelScope = Resolver.BeginKernelScope(); Resolver.LoadModuleConfiguration <Blueprint>(); }
public void Initialize() { KernelScope = Resolver.BeginKernelScope(); Resolver.LoadModuleConfiguration <Blueprint>(); Scope = RequestResponseScopefactory.CreateScope(); }
public void Initialize() { KernelScope = Resolver.BeginKernelScope(); Resolver.LoadModuleConfiguration <TestModuleBindingConfiguration>(); }
public BenchmarkTest() { KernelScope = Resolver.BeginKernelScope(); Resolver.LoadModuleConfiguration <Blueprint>(); }
public void Initialize() { KernelScope = Resolver.BeginKernelScope(); Resolver.LoadModuleConfiguration <TestBinding>(); Resolver.GetConfigurator().UnBind <IReplaceableSerializer>().AllAndBind().To <JsonReplaceableSerializer>().SetSingletonScope().AllowOverride = false; }