public void WhenDataStoreInConfigIsMain_InitializesDataStore() { ConfigurationManager.AppSettings["DataStoreType"] = "Main"; var ioc = new InjectionContainer(); var accountDataStore = ioc.GetProvider().GetRequiredService <IAccountDataStore>(); Assert.IsType <AccountDataStore>(accountDataStore); }