public void DeleteTroubleshooterStep(int troubleshooterStepId)
        {
            string apiMethod = string.Format("/Troubleshooter/Step/{0}", troubleshooterStepId);

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

            var deleteSuccess = _troubleshooterController.DeleteTroubleshooterStep(troubleshooterStepId);

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