public void DeleteTroubleshooterCategory(int troubleshooterCategoryId)
        {
            string apiMethod = string.Format("/Troubleshooter/Category/{0}", troubleshooterCategoryId);

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

            var deleteSuccess = _troubleshooterController.DeleteTroubleshooterCategory(troubleshooterCategoryId);

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