Neos\ContentRepository\Tests\Functional\Eel\FlowQueryOperations\NextUntilOperationTest::nextUntilOperationDataProvider PHP Method

nextUntilOperationDataProvider() public method

    public function nextUntilOperationDataProvider()
    {
        return array(array('currentNodePaths' => array('/a/a1'), 'subject' => '[instanceof Neos.ContentRepository.Testing:NodeType]', 'expectedNodePaths' => array('/a/a2'), 'unexpectedNodePaths' => array('/a/a1', '/a/a3', '/a/a4')), array('currentNodePaths' => array('/a/a3'), 'subject' => '[instanceof Neos.ContentRepository.Testing:NodeType]', 'expectedNodePaths' => array('/a/a4'), 'unexpectedNodePaths' => array('/b')), array('currentNodePaths' => array('/a/a4'), 'subject' => '[instanceof Neos.ContentRepository.Testing:NodeType]', 'expectedNodePaths' => array(), 'unexpectedNodePaths' => array('/a/a5')), array('currentNodePaths' => array('/b/b1'), 'subject' => 'b3[instanceof Neos.ContentRepository.Testing:NodeType]', 'expectedNodePaths' => array('/b/b2'), 'unexpectedNodePaths' => array('/b/b4')), array('currentNodePaths' => array('/a/a1'), 'subject' => '', 'expectedNodePaths' => array('/a/a2', '/a/a3', '/a/a4', '/a/a5'), 'unexpectedNodePaths' => array('/a/a1', '/b')));
    }