Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ class WiFiChannelCountryGHZ2 {
private final SortedSet<Integer> world;

WiFiChannelCountryGHZ2() {
countries = new HashSet<>(Arrays.asList("AS", "AU", "CA", "FM", "GU", "MP", "PA", "PR", "UM", "US", "VI"));
countries = new HashSet<>(Arrays.asList(
"AS", "CA", "CO", "DO", "FM", "GT", "GU", "MP", "MX", "PA", "PR", "UM", "US", "UZ", "VI")
);
channels = new TreeSet<>(Arrays.asList(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11));
world = new TreeSet<>(channels);
world.add(12);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ public void setUp() {

@Test
public void testChannelsForUSAndSimilar() {
List<String> countries = Arrays.asList("AS", "AU", "CA", "FM", "GU", "MP", "PA", "PR", "UM", "US", "VI");
List<String> countries = Arrays.asList("AS", "CA", "CO", "DO", "FM", "GT", "GU", "MP", "MX", "PA", "PR", "UM", "US", "UZ", "VI");
IterableUtils.forEach(countries, new ChannelUSClosure());
}

@Test
public void testChannelsForWorld() {
List<String> countries = Arrays.asList(null, "GB", "XYZ", "MX", "AE");
List<String> countries = Arrays.asList(null, "GB", "XYZ", "AU", "AE");
IterableUtils.forEach(countries, new ChannelWorldClosure());
}

Expand Down