public void AddNewForm_ReturnsCorrectView_View()
        {
            //Arrange
            StylistsController controller = new StylistsController();

            //Act
            IActionResult addNewFormView = controller.AddNewForm();

            //Assert
            Assert.IsInstanceOfType(addNewFormView, typeof(ViewResult));
        }