Skip to content

Commit

Permalink
Merge pull request #51 from hiroxpepe/issue/49
Browse files Browse the repository at this point in the history
fix: #49 getting the track name and number of drum-track.
  • Loading branch information
hiroxpepe authored Mar 11, 2021
2 parents acae953 + e87577f commit 73f3f55
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions MidiPlayerTests/SynthTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using static Microsoft.VisualStudio.TestTools.UnitTesting.Assert;
using System;
using System.ComponentModel;
using System.Threading.Tasks;
using static System.Threading.Thread;

Expand Down Expand Up @@ -79,6 +80,8 @@ public void TestInitialize() {
};
Synth.OnEnd += () => {
};
Synth.OnUpdate += (object sender, PropertyChangedEventArgs e) => {
};
playSong();
Sleep(3000);
}
Expand Down

0 comments on commit 73f3f55

Please sign in to comment.