public void Azure_Blob_CreateStoreFromCore() { // Given var azureBlobCore = new AzureBlobCore("azure_dev"); // When var store = azureBlobCore.CreateStoreFor<InstrumentDocuments>(); // Then Assert.IsTrue(store is AzureStore<InstrumentDocuments>); }
public void Azure_Blob_CreateStoreFromCore() { // Given var azureBlobCore = new AzureBlobCore("azure_dev"); // When var store = azureBlobCore.CreateStoreFor <InstrumentDocuments>(); // Then Assert.IsTrue(store is AzureStore <InstrumentDocuments>); }
private static IDataStore <InstrumentDocuments> GetAzureStore() { return(AzureBlobCore.CreateStoreFor <InstrumentDocuments>(AzureStoreUsingBlobWithStringKey.ConnectionStringName)); }