SongDataTests.cs 219 B

1234567891011
  1. using Xunit.Abstractions;
  2. namespace SongVocalSectionAnalyser.Tests
  3. {
  4. public class SongDataTests : TestBase
  5. {
  6. public SongDataTests(ITestOutputHelper output) : base(output)
  7. {
  8. }
  9. }
  10. }