/**
  * @since 1.8
  */
 public function __construct()
 {
     $this->factory = new SQLStoreFactory($this);
     $this->smwIds = $this->factory->newIdTableManager();
 }
 public function testCanConstractIdTableManager()
 {
     $instance = new SQLStoreFactory(new SMWSQLStore3());
     $this->assertInstanceOf('SMWSql3SmwIds', $instance->newIdTableManager());
 }