public void UpdateForm_ReturnsCorrectView_True()
        {
            StylistController controller = new StylistController();
            ActionResult      updateView = controller.UpdateForm(1);

            Assert.IsInstanceOfType(updateView, typeof(ViewResult));
        }