private static bool TryConnect() { try { using (CosmosSqlTestStore.CreateInitialized("NonExistent")) { } return(true); } catch (Exception) { return(false); } }
public TestStoreContext(CosmosSqlTestStore testStore) { _testStore = testStore; }
public override TestStore GetOrCreate(string storeName) => CosmosSqlTestStore.GetOrCreate(Name, "Northwind.json");
public virtual TestStore GetOrCreate(string storeName) => CosmosSqlTestStore.GetOrCreate(storeName);
public TestStore Create(string storeName) => CosmosSqlTestStore.Create(storeName);