Esempio n. 1
0
        public async Task TestUpdateSpecificUserThumbnail()
        {
            var r = await _client.UserGetAsync(_fixture.TestUserObjectId);

            var thumb = File.ReadAllBytes("thumbnails/random-thumbnail-400.jpg");
            await _client.UserUpdateThumbnailAsync(r.ObjectId, thumb);

            Assert.True(true);
        }