Exemplo n.º 1
0
 @Test
 public void testHasEveryLetterOfAlphabet_Burger() {
   assertFalse(StringyThingies.hasEveryLetterOfAlphabet("burger"));
 }
Exemplo n.º 2
0
 @Test
 public void testHasEveryLetterOfAlphabet_Fox() {
   assertTrue(
       StringyThingies.hasEveryLetterOfAlphabet("the quick brown fox jumps over the lazy dog"));
 }