|
|
@ -206,7 +206,8 @@ void louderTest(String testName, UsbPlayer inputPlay, int expectedResult) { |
|
|
|
UsbPlayer up1 = new UsbPlayer(); |
|
|
|
return Stream.of( |
|
|
|
Arguments.of("The song is not in the Album", up1.findSong("song 4"), -1), |
|
|
|
Arguments.of("The song is in the Album", up1.findSong("Musik 02"), 1) |
|
|
|
Arguments.of("The song is in the Album", up1.findSong("Musik 02"), 1), |
|
|
|
Arguments.of("Name of the Song is in lower case :", up1.findSong("musik 02"), 1) |
|
|
|
|
|
|
|
); |
|
|
|
} |
|
|
|