/**
  * @since 1.8
  */
 public function __construct()
 {
     $this->smwIds = new SMWSql3SmwIds($this);
     $this->factory = new SQLStoreFactory($this);
     $this->cachedValueLookupStore = $this->factory->newCachedValueLookupStore();
 }
 public function testCanConstrucCachedValueLookupStore()
 {
     $instance = new SQLStoreFactory($this->store);
     $this->assertInstanceOf('SMW\\SQLStore\\CachedValueLookupStore', $instance->newCachedValueLookupStore());
 }