Ejemplo n.º 1
0
        public void DeleteAllClient_ReturnsCorrectView_True()
        {
            //Arrange
            StylistsController controller = new StylistsController();

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

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