public void CreateForm_ReturnsCorrectView_True()
        {
            //Arrange
            SpecialtyController controller = new SpecialtyController();

            //Act
            ActionResult createFormView = controller.CreateForm();

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