public void TestGetTopStories()
        {
            //Test that running the get top stories return a list of 500 strings
            const string testUrl = "https://hacker-news.firebaseio.com/v0/topstories.json?print=pretty";

            TrueLayerHackerNews.TrueLayerHackerNews trueLayerHackerNews = new TrueLayerHackerNews.TrueLayerHackerNews();
            WebClient webclient = new WebClient();

            List <string> returnList = trueLayerHackerNews.getObejctFromAPI <List <string> >(testUrl);

            Assert.AreEqual(returnList.Count, 500);
        }