Exemple #1
0
        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>);
        }
Exemple #2
0
        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>);
        }
Exemple #3
0
 private static IDataStore <InstrumentDocuments> GetAzureStore()
 {
     return(AzureBlobCore.CreateStoreFor <InstrumentDocuments>(AzureStoreUsingBlobWithStringKey.ConnectionStringName));
 }