Neos\Eel\Tests\Unit\FlowQuery\Operations\SliceOperationTest::evaluateSetsTheCorrectPartOfTheContextArray PHP Method

evaluateSetsTheCorrectPartOfTheContextArray() public method

public evaluateSetsTheCorrectPartOfTheContextArray ( $value, $arguments, $expected )
    public function evaluateSetsTheCorrectPartOfTheContextArray($value, $arguments, $expected)
    {
        $flowQuery = new \Neos\Eel\FlowQuery\FlowQuery($value);
        $operation = new SliceOperation();
        $operation->evaluate($flowQuery, $arguments);
        $this->assertEquals($expected, $flowQuery->getContext());
    }