public void ListOfPerson()
        {
            PersonController personController = new PersonController(mockPersonService.Object);

            ActionResult result = personController.ListOfPerson();
            mockPersonService.Verify(m => m.GetList());


            Assert.IsInstanceOfType(result, typeof(PartialViewResult));
            Assert.IsNotNull(result);
            // Assert.AreEqual((result as ViewResult).ViewName, "Index");
        }