コード例 #1
0
ファイル: SpecialtiesTests.cs プロジェクト: ldam77/HairSalon
        public void SearchForm_ReturnsCorrectView_True()
        {
            //Arrange
            SpecialtiesController controller = new SpecialtiesController();

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

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