Neos\ContentRepository\Tests\Unit\FlowQueryOperations\NextAllOperationTest::nextAllWillReturnEmptyResultForLastNodeInLevel PHP Метод

nextAllWillReturnEmptyResultForLastNodeInLevel() публичный Метод

    public function nextAllWillReturnEmptyResultForLastNodeInLevel()
    {
        $context = array($this->thirdNodeInLevel);
        $q = new FlowQuery($context);
        $operation = new NextAllOperation();
        $operation->evaluate($q, array());
        $output = $q->getContext();
        $this->assertEquals(array(), $output);
    }