public void AccServiceDetails()
 {
     AccomodationServicesController controller = new AccomodationServicesController();
     var result = controller.Details(1);
     Assert.IsNotNull(result, "Not Expected View");
     Assert.IsInstanceOfType(result, typeof(object));
 }
        public void AccServiceDetailsNotFound()
        {
            AccomodationServicesController controller = new AccomodationServicesController();
            var result = (HttpStatusCodeResult)controller.Details(-1);
            Assert.AreEqual(404, result.StatusCode);
            Assert.IsInstanceOfType(result, typeof(HttpStatusCodeResult));

        }