afeprojectnameControllers.HomeController.About C# (CSharp) Method

About() public method

public About ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult About()
        {
            return View();
        }

Usage Example

        public void About()
        {
            // Arrange
            var controller = new HomeController();

            // Act
            var result = controller.About() as ViewResult;

            // Assert
            Assert.That(result, Is.Not.Null);
        }
All Usage Examples Of afeprojectnameControllers.HomeController::About
HomeController