Пример #1
0
        public void NewSpecialty_ReturnsCorrectView_True()
        {
            //Arrange
            SpecialtiesController controller = new SpecialtiesController();

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

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