public void GetTroubleshooterComments(int troubleshooterStepId)
        {
            string apiMethod = string.Format("/Troubleshooter/Comment/ListAll/{0}", troubleshooterStepId);

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

            var troubleshooterComments = _troubleshooterController.GetTroubleshooterComments(troubleshooterStepId);

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

            Assert.That(troubleshooterComments, Is.EqualTo(_responseTroubleshooterCommentCollection));
        }