public void Initialize()
        {
            ContainerFactory.Current.KillAllInstances();
            KernelScope = Resolver.BeginKernelScope();
            Resolver.LoadModuleConfiguration<Blueprint>();

        }
 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);
 }
Example #3
0
 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);
 }
Example #4
0
        public void Initialize()
        {
            KernelScope = Resolver.BeginKernelScope();
            Resolver.LoadModuleConfiguration<Blueprint>();
            Scope = RequestResponseScopefactory.CreateScope();

        }
Example #5
0
 /// <summary>
 /// Terminates the kernel context
 /// </summary>
 /// <param name="provider"></param>
 internal static void EndKernelScope(IKernelContext provider, bool cleanAllScopes)
 {
     ((IKernelContextCommands)provider).End();
     if (cleanAllScopes)
     {
         ContainerFactory.Current(new ContextProviders.ScopeContext(ResolverKernel)).KillAllInstances();
     }
 }
Example #6
0
 /// <summary>
 /// Terminates the kernel context
 /// </summary>
 /// <param name="provider"></param>
 public static void EndKernelScope(IKernelContext provider, bool cleanAllScopes)
 {
     ((IKernelContextCommands)provider).End();
     if (cleanAllScopes)
     {
         ContainerFactory.Current.KillAllInstances();
     }
 }
Example #7
0
 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();
 }
Example #8
0
 public AutoFacIntegrationTests()
 {
     try
     {
         Resolver.LoadIocContainer(new AutoFacFactory());
     }
     catch (Exception)
     {
     }
     KernelScope = Resolver.BeginKernelScope();
     Resolver.LoadModuleConfiguration <AutoFacTestBindings>();
 }
Example #9
0
        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>();
 }
Example #11
0
 public void Initialize()
 {
     KernelScope = Resolver.BeginKernelScope();
     Resolver.LoadModuleConfiguration <Blueprint>();
 }
        public void Initialize()
        {
            KernelScope = Resolver.BeginKernelScope();
            Resolver.LoadModuleConfiguration<Blueprint>();

        }
Example #13
0
 public ConfigSetTests()
 {
     KernelScope = Resolver.BeginKernelScope();
     Resolver.LoadModuleConfiguration <TestConfigServiceBindings>();
 }
 public void Initialize()
 {
     ContainerFactory.Current.KillAllInstances();
     KernelScope = Resolver.BeginKernelScope();
     Resolver.LoadModuleConfiguration <Blueprint>();
 }
Example #15
0
 public ConfigSetTests()
 {
     KernelScope = Resolver.BeginKernelScope();
     Resolver.LoadModuleConfiguration<TestConfigServiceBindings>();
 }
Example #16
0
 public void Initialize()
 {
     KernelScope = Resolver.BeginKernelScope();
     Resolver.LoadModuleConfiguration <TestBinding>();
     Resolver.GetConfigurator().UnBind <IReplaceableSerializer>().AllAndBind().To <JsonReplaceableSerializer>().SetSingletonScope().AllowOverride = false;
 }
Example #17
0
 public BenchmarkTest()
 {
     KernelScope = Resolver.BeginKernelScope();
     Resolver.LoadModuleConfiguration <Blueprint>();
 }
Example #18
0
 public void Initialize()
 {
     KernelScope = Resolver.BeginKernelScope();
     Resolver.LoadModuleConfiguration <Blueprint>();
     Scope = RequestResponseScopefactory.CreateScope();
 }
Example #19
0
 public BenchmarkTest()
 {
     KernelScope = Resolver.BeginKernelScope();
     Resolver.LoadModuleConfiguration<Blueprint>();
 }
Example #20
0
 public void Initialize()
 {
     KernelScope = Resolver.BeginKernelScope();
     Resolver.LoadModuleConfiguration<TestBinding>();
     Resolver.GetConfigurator().UnBind<IReplaceableSerializer>().AllAndBind().To<JsonReplaceableSerializer>().SetSingletonScope().AllowOverride = false;
 }
Example #21
0
 public void Initialize()
 {
     KernelScope = Resolver.BeginKernelScope();
     Resolver.LoadModuleConfiguration <TestModuleBindingConfiguration>();
 }