@After
 public void tearDownStore() throws Exception {
   // TODO, not really nice
   FulltextIndex fulltextIndex = ((RdfStoreImpl) this.store).getFulltextIndex();
   if (fulltextIndex != null) {
     fulltextIndex.clear();
   }
   this.store.shutDown();
 }