|
|
@ -140,9 +140,12 @@ class RadioPlayerTest { |
|
|
|
|
|
|
|
static Stream<Arguments> showStationInfoOptions() { |
|
|
|
RadioPlayer rp1 = new RadioPlayer(); |
|
|
|
RadioPlayer rp2 = new RadioPlayer(); |
|
|
|
rp2.changeRegion("BY"); |
|
|
|
|
|
|
|
return Stream.of( |
|
|
|
Arguments.of("Show Station Info for first saved Radio", rp1, rp1.getYouFMInfoByTime(rp1.hour)) |
|
|
|
Arguments.of("Show Station Info for first saved Radio", rp1, rp1.getYouFMInfoByTime(rp1.hour)), |
|
|
|
Arguments.of("Show Station Info for regional Station", rp2, rp2.getAntenneBYInfoByTime(rp2.hour)) |
|
|
|
); |
|
|
|
} |
|
|
|
|
|
|
|