public void GetMovieCategories_InternalServerError_Test()
        {
            var theaterServiceMock = new Mock <ITheaterService>();

            theaterServiceMock.Setup(x => x.GetMovieCategories()).Throws <Exception>();

            var controller   = new TheaterController(theaterServiceMock.Object);
            var actualResult = controller.GetMovieCategories();

            var result       = (ObjectResult)actualResult;
            var asJson       = JsonConvert.SerializeObject(result.Value);
            var deserialized = JsonConvert.DeserializeObject <Dictionary <string, object> >(asJson);

            Assert.IsTrue((bool)deserialized["Success"] == false);

            theaterServiceMock.VerifyAll();
        }
        public void GetMovieCategories_Successful_Test()
        {
            var theaterServiceMock = new Mock <ITheaterService>();

            theaterServiceMock.Setup(x => x.GetMovieCategories());

            var controller   = new TheaterController(theaterServiceMock.Object);
            var actualResult = controller.GetMovieCategories();

            var okResult     = (OkObjectResult)actualResult;
            var asJson       = JsonConvert.SerializeObject(okResult.Value);
            var deserialized = JsonConvert.DeserializeObject <Dictionary <string, object> >(asJson);

            Assert.IsTrue((bool)deserialized["Success"]);

            theaterServiceMock.VerifyAll();
        }