public async Task TestGetAccountAlbums()
        {
            var imgurClient = await AuthenticationHelpers.CreateOAuth2AuthenticatedImgurClient();

            var accountEndpoint = new AccountEndpoint(imgurClient);
            var accountAlbums   = await accountEndpoint.GetAccountAlbumsAsync(0);

            // Assert the Response
            Assert.IsNotNull(accountAlbums.Data);
            Assert.AreEqual(accountAlbums.Success, true);
            Assert.AreEqual(accountAlbums.Status, HttpStatusCode.OK);
        }