Browse Source

UsbPlayerTest.findSongTest Forth Case

feature-pr-USB-10Louder
sahar 2 years ago
parent
commit
f8c8ff9120
  1. 4
      src/test/java/device/usbPlayer/UsbPlayerTest.java

4
src/test/java/device/usbPlayer/UsbPlayerTest.java

@ -207,8 +207,8 @@ void louderTest(String testName, UsbPlayer inputPlay, int expectedResult) {
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("Name of the Song is in lower case :", up1.findSong("musik 02"), 1)
Arguments.of("Name of the Song is in lower case :", up1.findSong("musik 02"), 1),
Arguments.of("Name of the Song is in upper case :", up1.findSong("MUSIK 02"), 1)
);
}
Loading…
Cancel
Save