@Test
public void should_get_JAVA_when_5282() {
Set<String> words = new HashSet<>(Arrays.asList("Java"));
PhoneCoder phoneCoder = new PhoneCoder(words);
Collection<String> result = phoneCoder.translate("5282");
assertThat(result).contains("JAVA");
}
}