Esempio n. 1
0
        public async Task GetMovieDetailTest()
        {
            Movie movie = await mdb.GetMovieDetails(120, new UrlParameters { });

            Assert.AreEqual("The Lord of the Rings: The Fellowship of the Ring", movie.title);
            Assert.AreEqual(120, movie.id);
        }