Skip to content

Commit

Permalink
added travis supported sound files
Browse files Browse the repository at this point in the history
  • Loading branch information
qpi committed Apr 28, 2017
1 parent 2830a40 commit ee3744c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Binary file added event-queue/etc/Bass-Drum-1.aif
Binary file not shown.
Binary file added event-queue/etc/Closed-Hi-Hat-1.aif
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ public void testPlaySound() throws UnsupportedAudioFileException, IOException, I
*/
@Test
public void testQueue() throws UnsupportedAudioFileException, IOException, InterruptedException {
Audio.playSound(Audio.getAudioStream("./etc/Bass-Drum-1.wav"), -10.0f);
Audio.playSound(Audio.getAudioStream("./etc/Bass-Drum-1.wav"), -10.0f);
Audio.playSound(Audio.getAudioStream("./etc/Bass-Drum-1.wav"), -10.0f);
Audio.playSound(Audio.getAudioStream("./etc/Bass-Drum-1.aif"), -10.0f);
Audio.playSound(Audio.getAudioStream("./etc/Bass-Drum-1.aif"), -10.0f);
Audio.playSound(Audio.getAudioStream("./etc/Bass-Drum-1.aif"), -10.0f);
assertTrue(Audio.getPendingAudio().length > 0);
// test that service is started
assertTrue(Audio.isServiceRunning());
Expand Down

0 comments on commit ee3744c

Please sign in to comment.