/**
  * Delete the concept cache for the given concept.
  *
  * @since 1.8
  * @param Title $concept
  */
 public function deleteConceptCache($concept)
 {
     $this->factory->newMasterConceptCache()->deleteConceptCache($concept);
 }
 public function testNewMasterConceptCache()
 {
     $instance = new SQLStoreFactory(new SMWSQLStore3());
     $this->assertInstanceOf('SMW\\SQLStore\\ConceptCache', $instance->newMasterConceptCache());
 }