Skip to content

Commit

Permalink
fix: #49 getting the track name and number of drum-track.
Browse files Browse the repository at this point in the history
  • Loading branch information
hiroxpepe committed Mar 11, 2021
1 parent acae953 commit e87577f
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 e87577f

Please sign in to comment.