Exemplo n.º 1
0
        public void WhenDataStoreInConfigIsMain_InitializesDataStore()
        {
            ConfigurationManager.AppSettings["DataStoreType"] = "Main";

            var ioc = new InjectionContainer();
            var accountDataStore = ioc.GetProvider().GetRequiredService <IAccountDataStore>();

            Assert.IsType <AccountDataStore>(accountDataStore);
        }