Beispiel #1
0
 public async Task ContainerSetPublicAccessAsync_ShouldThrow_WhenArgumentNull(string accountName, string containerName)
 {
     await Assert.ThrowsAsync <ArgumentNullException>(
         async() => await _storageService.ContainerSetPublicAccessAsync(accountName, containerName, ContainerAccessType.Blob, null).ConfigureAwait(false)).ConfigureAwait(false);
 }