public async Task GetsPocketAccountAssociatedWithAccessTokenWhenGettingNextArticle()
        {
            await _service.GetNextArticleAsync(AccessToken);

            _mockRepo.Verify(r => r.FindByIdAsync(_accountId), Times.Exactly(1));
        }