public void EditForm_ReturnsCorrectView_True()
        {
            StylistController controller = new StylistController();
            ActionResult      allView    = controller.EditForm(1);

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