Наследование: extends Neos\Eel\FlowQuery\Operations\AbstractOperation
 /**
  * @test
  * @dataProvider childrenExamples
  */
 public function evaluateSetsTheCorrectPartOfTheContextArray($value, $arguments, $expected)
 {
     $flowQuery = new \Neos\Eel\FlowQuery\FlowQuery($value);
     $operation = new ChildrenOperation();
     $operation->evaluate($flowQuery, $arguments);
     $this->assertEquals($expected, $flowQuery->getContext());
 }