/**
  * @param RequestOptions|null $requestOptions
  *
  * @return CachedListLookup
  */
 public function getUnusedPropertiesSpecial($requestOptions = null)
 {
     return $this->factory->newUnusedPropertyCachedListLookup($requestOptions);
 }
 public function testCanConstructUnusedPropertyCachedListLookup()
 {
     $instance = new SQLStoreFactory(new SMWSQLStore3());
     $this->assertInstanceOf('SMW\\SQLStore\\Lookup\\CachedListLookup', $instance->newUnusedPropertyCachedListLookup(null));
 }