Removed setVolume test for VLC backend as the null output sink cannot have its' volume actually set.

This commit is contained in:
neviyn 2016-04-02 01:52:24 +01:00
parent e83c08f206
commit 1ca576f7d0

View File

@ -67,14 +67,6 @@ public class VLCPlayerTest {
assertFalse(player.isPlaying());
}
@Test
public void testSetVolume() throws Exception {
assertEquals(ConfigManager.getLastVolume(), player.getVolume());
int newVolume = 25;
player.setVolume(25);
assertEquals(newVolume, player.getVolume());
}
@Test
public void testSeek() throws Exception {
player.playSong(Optional.of(sampleSong));