Index() публичный Метод

public Index ( ) : System.Web.Mvc.ActionResult
Результат System.Web.Mvc.ActionResult
        public void ShouldNotAllowAddingNullPublishSettings()
        {
            var homeController = new HomeController();

            HttpPostedFileBase file = null;

            ActionResult result = homeController.Index(file);

            Assert.IsNotNull(result);
        }