public AzureStorageProvider(
   IFileSettings fileSettings,
   IBlobStoreFactory blobStoreFactory)
   : base(fileSettings)
 {
   _blobStoreFactory = blobStoreFactory ?? throw new ArgumentNullException(nameof(blobStoreFactory));
 }
Ejemplo n.º 2
0
        public AzureStorageProviderTests()
        {
            var fileSettings = A.Fake <IFileSettings>();

            _blobStoreFactory     = A.Fake <IBlobStoreFactory>();
            _azureStorageProvider = new AzureStorageProvider(fileSettings, _blobStoreFactory);
        }