@Test
 public void testReindex() throws Exception {
   mockContent("", true, null);
   when(indexer.getIndexerType()).thenReturn(Indexer.IndexerType.RDF);
   indexerGroup.reindex();
   verify(indexer, atLeastOnce()).update(eq(repoUrl), any());
 }