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

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

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

            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();
        }
        public void GetMovieTicketTypes_InternalServerError_Test()
        {
            var theaterServiceMock = new Mock <ITheaterService>();


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

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

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

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

            theaterServiceMock.VerifyAll();
        }