Beispiel #1
0
        public async Task CreateRecipientAsync()
        {
            var options = Fixture.Create <Recipient>();

            var result = await _service.CreateBucketRecipientAsync(_jobId, options);

            Assert.NotNull(result);
            AssertRequest(HttpMethod.Post, $"/share/buckets/{_jobId}/recipients");
        }