private void btnGo_Click(object sender, EventArgs e) { this.groupBox1.Enabled = false; this.groupBox2.Enabled = false; listResults.Items.Clear(); var process = new Mp3FormatterFacade(this); process.ProcessLog = this; process.Process(); this.groupBox1.Enabled = true; this.groupBox2.Enabled = true; }
public void TestFacade_WriteAlbumsGavStyleNoFix() { var settings = FormatterSettingsTests.GetDefaultSettings(); settings.Format = FormatStyle.Gav; settings.FixTags = false; settings.CopyOrMove = CopyType.Copy; var log = new TestLogObject(); var facade = new Mp3FormatterFacade(settings); facade.ProcessLog = log; facade.Process(); }
public void TestFacade_WriteAlbumsPeteStyleWithFix() { var settings = FormatterSettingsTests.GetDefaultSettings(); settings.Format = FormatStyle.Pete; settings.FixTags = true; settings.CopyOrMove = CopyType.Copy; var log = new TestLogObject(); var facade = new Mp3FormatterFacade(settings); facade.ProcessLog = log; facade.Process(); var mp3 = GetFile("Von Hertzen Brothers - 2013 - Nine Lives\\02-vhb-flowers_and_rust.mp3"); Assert.AreEqual("Von Hertzen Brothers", mp3.AlbumArtist); }