Example #1
0
 @Test
 public void testBinarySearchWithEmpty() throws Exception {
   assertEquals(
       4,
       Search.binarySearchWithEmpty(
           new String[] {"at", "", "", "", "ball", "", "", "car", "", "", "dad", "", ""}, "ball"));
 }