SongBrowserTestRunner.cs 464 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace SongBrowserPlugin.Tests
  6. {
  7. public class SongBrowserTestRunner
  8. {
  9. private Logger _log = new Logger("SongBrowserTestRunner");
  10. public SongBrowserTestRunner()
  11. {
  12. }
  13. public void RunTests()
  14. {
  15. _log.Info("Running Song Browser Tests");
  16. new SongBrowserModelTests().RunTest();
  17. }
  18. }
  19. }