public async Task ExistsAsync_WithTenantDiscovery()
        {
            await using DisposingContainer test = await GetTestContainerAsync(GetServiceClient_OauthAccount (true));

            // Arrange
            BlobBaseClient blob = await GetNewBlobClient(test.Container);

            // Act
            Response <bool> response = await blob.ExistsAsync();

            // Assert
            Assert.IsTrue(response.Value);
        }