[InlineData("S9vfFEw3v6XMq2wDFmBPI2eAtWpjoDrAps", false)] // Random not actual playlist
        public async Task GetItemsFromPlaylistTestAsync(string playlistId, bool shouldHaveItems, bool shouldThrowError = false)
        {
            if (shouldThrowError)
            {
                await Assert.ThrowsAsync <YouTubeServiceException>(() => _youTubeService.GetItemsFromPlaylistAsync(playlistId));
            }
            else
            {
                var information = await _youTubeService.GetItemsFromPlaylistAsync(playlistId);

                Assert.Equal(shouldHaveItems, information.Any());
            }
        }