public void Index_ReturnsCorrectView_True()
        {
            StylistController controller = new StylistController();
            ActionResult      allView    = controller.Index();

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