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