public ModelObjectsBuilder(
     IInfoDownloader seasonInfoDownloader,
     IInfoDownloader tvSeriesInfoDownloader)
 {
     this.seasonInfoDownloader   = seasonInfoDownloader;
     this.tvSeriesInfoDownloader = tvSeriesInfoDownloader;
 }
Beispiel #2
0
        public void TestInitialize()
        {
            this.subInfoDownloaderEpisode = Substitute.For <IInfoDownloader>();
            this.subInfoDownloaderUri     = Substitute.For <IInfoDownloader>();

            subInfoDownloaderEpisode.GetInfoListAsync(Arg.Any <Uri>())
            .Returns(Task.FromResult(new List <Uri>()));
        }