evaluate() public method

public evaluate ( FlowQuery $flowQuery, array $arguments ) : void
$flowQuery Neos\Eel\FlowQuery\FlowQuery the FlowQuery object
$arguments array the arguments for this operation
return void
 /**
  * @test
  */
 public function siblingsWillReturnEmptyArrayForSiteNode()
 {
     $context = array($this->siteNode);
     $q = new FlowQuery($context);
     $operation = new SiblingsOperation();
     $operation->evaluate($q, array());
     $output = $q->getContext();
     $this->assertEquals(array(), $output);
 }