public void New_ReturnsCorrectActionType_ViewResult()
        {
            //Arrange
            ChildrenController controller = new ChildrenController();

            //Act
            IActionResult view = controller.New();

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