public void GetTroubleshooterComment(int troubleshooterCommentId)
        {
            var apiMethod = string.Format("/Troubleshooter/Comment/{0}", troubleshooterCommentId);

            _kayakoApiRequest.Setup(x => x.ExecuteGet <TroubleshooterCommentCollection>(apiMethod)).Returns(_responseTroubleshooterCommentCollection);

            var troubleshooterComment = _troubleshooterController.GetTroubleshooterComment(troubleshooterCommentId);

            _kayakoApiRequest.Verify(x => x.ExecuteGet <TroubleshooterCommentCollection>(apiMethod), Times.Once());

            Assert.That(troubleshooterComment, Is.EqualTo(_responseTroubleshooterCommentCollection.First()));
        }