public void AddCommentInEpic() { var addComment = new AddCommentBuilder(). WithComment("The Issue is very Tricky 4"). Build(); var issue = new Issue(restClient); var objectResponse = issue.AddingComment(addComment, "JIR-4"); Assert.AreEqual("Created", objectResponse, "The Comment was added to the Epic"); Console.WriteLine("The Comment was " + objectResponse); }