public async Task ExceptionthrownWhenGettingAStorageManifestAndServerError()
        {
            var containerName = "TestContainer";
            var manifestName = "a/b/b/manifest";

            var restResp = new HttpResponseAbstraction(new MemoryStream(), new HttpHeadersAbstraction(), HttpStatusCode.InternalServerError);
            this.StorageServiceRestClient.Responses.Enqueue(restResp);

            var client = new StorageServicePocoClient(GetValidContext(), this.ServiceLocator);
            await client.GetStorageManifest(containerName, manifestName);
        }