Exemple #1
0
 @Test
 public void testSearch__String() {
   try {
     List<ModuleInfo> hits = fixture.search("rsync");
     assertFalse("No modules found matching 'rsync'", hits.isEmpty());
     for (ModuleInfo mi : hits) System.out.println(mi);
   } catch (IOException e) {
     fail(e.getMessage());
   }
 }