public async Task TestGetSuccessfully()
        {
            using (var context = new FeedMeContext(options))
            {
                DetailsController detailsController         = new DetailsController(context, configuration);
                ActionResult <IEnumerable <Detail> > result = await detailsController.GetDetail();

                Assert.IsNotNull(result);
            }
        }