public void Index_ReturnsCorrectView_True()
        {
            //Arrange
            Home1 controller = new Home1();

            //Act
            ActionResult indexView = controller.Index();

            //Assert
            Assert.IsInstanceOfType(indexView, typeof(ViewResult));
        }