public async void Can_Get_Photos_By_UserId(string userId)
        {
            var results = await _flickr.PhotosetsGetListAsync(userId, 0, 10);

            Assert.NotEmpty(results);
        }