public void LeaseContainerRenew_NonLeasedContainer_ThrowsLeaseIdMismatchException()
        {
            IBlobServiceClient client = new BlobServiceClient(AccountSettings);
            var containerName = GenerateSampleContainerName();
            CreateContainer(containerName);

            client.LeaseContainerRenew(containerName, FakeLeaseId);

            // expects exception
        }
        public void LeaseContainerRenew_RecentlyLeasedContainer_RenewsLease()
        {
            IBlobServiceClient client = new BlobServiceClient(AccountSettings);
            var containerName = GenerateSampleContainerName();
            CreateContainer(containerName);
            var leaseId = LeaseContainer(containerName, TimeSpan.FromSeconds(15), null);
            Thread.Sleep(16);

            client.LeaseContainerRenew(containerName, leaseId);

            // how do I test this?
            // it didn't blow up and it's still leased?
            AssertContainerIsLeased(containerName, leaseId);
        }