Ejemplo n.º 1
0
        public async Task GetBookmarkAsync_Test()
        {
            var WebClient = Setup.SetupWebClient().Result;

            // If we're not authed, this will fail with paywall.
            // Need a good account to handle this in CI...
            if (!WebClient.IsAuthenticated)
            {
                return;
            }
            BookmarkManager bookmarkManager = new BookmarkManager(WebClient);
            var             result          = await bookmarkManager.GetAllBookmarksAsync();

            Assert.NotNull(result);
        }