Inheritance: Controller
 public void testContact()
 {
     HomeController homeController = new HomeController();
     ActionResult index = homeController.Contact();
 }
 public void testIndex()
 {
     HomeController homeController = new HomeController();
     ActionResult index = homeController.Index();
 }
 public void testAbout()
 {
     HomeController homeController = new HomeController();
     ActionResult about = homeController.About();
 }