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