public void AddFacebookCommentTest()
        {
            FacebookService   target  = new FacebookService();
            FBUser            fbUser  = new FBUser(12345, "a token", "theUsername", "f");
            string            comment = "this is a facebook comment";
            PublishedArticles article = new PublishedArticles();

            article.articleId = 1;
            target.AddFacebookComment(fbUser, comment, article);
        }