コード例 #1
0
        public void ManagementCompany()
        {
            //Arrange
            ManagementController Management = new ManagementController();

            //Act
            ActionResult result = Management.ManagementCompany() as ActionResult;

            Assert.IsNotNull(result);
        }
コード例 #2
0
        public void Index()
        {
            //Arrange
            ManagementController Management = new ManagementController();

            //Act
            ActionResult result = Management.Index() as ActionResult;

            //Assert
            Assert.IsNotNull(result);
        }