public void ShouldNotAllowAddingNullPublishSettings()
        {
            var homeController = new HomeController();

            HttpPostedFileBase file = null;

            ActionResult result = homeController.Index(file);

            Assert.IsNotNull(result);
        }