public void Setup()
        {
            var basedir     = AppDomain.CurrentDomain.BaseDirectory;
            var file        = System.IO.Path.Combine(basedir, FilePath);
            var testoptions = new ITunesXmlDbOptions
            {
                ExcludeNonExistingFiles = false,
                ParalelParsingEnabled   = false
            };

            Sut = new ITunesXmlDb(file, testoptions);
        }
 public void TearDown()
 {
     Sut = null;
 }