private static bool TryConnect()
        {
            try
            {
                using (CosmosSqlTestStore.CreateInitialized("NonExistent"))
                {
                }

                return(true);
            }
            catch (Exception)
            {
                return(false);
            }
        }
Пример #2
0
 public TestStoreContext(CosmosSqlTestStore testStore)
 {
     _testStore = testStore;
 }
 public override TestStore GetOrCreate(string storeName)
 => CosmosSqlTestStore.GetOrCreate(Name, "Northwind.json");
Пример #4
0
 public virtual TestStore GetOrCreate(string storeName) => CosmosSqlTestStore.GetOrCreate(storeName);
Пример #5
0
 public TestStore Create(string storeName) => CosmosSqlTestStore.Create(storeName);