Exemplo n.º 1
0
        public async Task GetMoviesAsync_TestMethod()
        {
            var sections = await _plexService.GetSectionsAsync();

            var movieSection = sections.First(obj => obj.type == "movie");
            var movies       = await _plexService.GetMoviesAsync(movieSection.key.ToString());

            Assert.IsTrue(movies.Any());
        }