|
|
@ -321,8 +321,13 @@ class UsbPlayerTest { |
|
|
|
UsbPlayer up1 = new UsbPlayer(); |
|
|
|
up1.GoToFirst(); |
|
|
|
|
|
|
|
UsbPlayer up2 = new UsbPlayer(); |
|
|
|
up2.GoToFirst(); |
|
|
|
up2.GoToFirst(); |
|
|
|
|
|
|
|
return Stream.of( |
|
|
|
Arguments.of("It should go to the first Song ", up1,up1.getPlaylist().get(0)) |
|
|
|
Arguments.of("It should go to the first Song ", up1,up1.getPlaylist().get(0)), |
|
|
|
Arguments.of("Call the function twice and it stills go to the first Song ", up2,up2.getPlaylist().get(0)) |
|
|
|
); |
|
|
|
} |
|
|
|
|
|
|
|