Exemplo n.º 1
0
        public async Task BlobDelete_ShouldThrow_WhenUriIsNull()
        {
            // Arrange
            var context = StorageClientProviderContext.None;

            // Act & Assert
            await Assert.ThrowsAsync <ArgumentNullException>(async() => await _storageService.BlobDelete(null, context).ConfigureAwait(false)).ConfigureAwait(false);
        }