public function testCanInterpretDescription()
 {
     $description = $this->getMockBuilder('\\SMW\\Query\\Language\\SomeProperty')->disableOriginalConstructor()->getMock();
     $compoundConditionBuilder = $this->getMockBuilder('\\SMW\\SPARQLStore\\QueryEngine\\CompoundConditionBuilder')->disableOriginalConstructor()->getMock();
     $instance = new SomePropertyInterpreter($compoundConditionBuilder);
     $this->assertTrue($instance->canInterpretDescription($description));
 }