Neos\ContentRepository\Tests\Functional\Eel\FlowQueryOperations\PrevUntilOperationTest::prevUntilOperationDataProvider PHP Method

prevUntilOperationDataProvider() public method

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