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

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

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