public void CanCorrectlyGenerateNextEpisodesStreamWithoutCachedStreams(SerieType serieType, string expected, int?season)
        {
            ISerie serie = new Serie(0, "TestMovie", new Progress(0, 1, season), 0, serieType.ToString(), string.Empty, string.Empty);

            string actual = streamManagerSUT.GenerateNextEpisodeStream(serie, new List <IStreamItem>());

            Assert.AreEqual(expected, actual);
        }