Esempio n. 1
0
        public void NewStylist_ReturnsCorrectView_True()
        {
            //Arrange
            StylistsController controller = new StylistsController();

            //Act
            ActionResult indexView = controller.NewStylist();

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