public async System.Threading.Tasks.Task GetTopPostsIdsShouldReturn9TopPostsIds()
        {
            var topPostsIds = await hns.GetTopPostsIds(9);

            Assert.IsNotNull(topPostsIds);
            Assert.AreEqual(topPostsIds.Count, 9);
        }