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 nextAllWillReturnSecondNodeAndThirdNodeInLevelForFirstAndSecondNodeInLevel()
 {
     $context = array($this->firstNodeInLevel, $this->secondNodeInLevel);
     $q = new FlowQuery($context);
     $operation = new NextAllOperation();
     $operation->evaluate($q, array());
     $output = $q->getContext();
     $this->assertEquals(array($this->secondNodeInLevel, $this->thirdNodeInLevel), $output);
 }