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

            _kayakoApiRequest.Setup(x => x.ExecuteDelete(apiMethod)).Returns(true);

            var deleteSuccess = _troubleshooterController.DeleteTroubleshooterComment(troubleshooterCommentId);

            _kayakoApiRequest.Verify(x => x.ExecuteDelete(apiMethod), Times.Once());
            Assert.IsTrue(deleteSuccess);
        }