eZ\Publish\Core\Repository\Tests\Service\Integration\NameSchemaBase::providerForTestResolve PHP Method

providerForTestResolve() public method

    public function providerForTestResolve()
    {
        return array(array('<text1>', array('eng-GB' => 'one', 'cro-HR' => 'jedan')), array('<text1> <text2>', array('eng-GB' => 'one two', 'cro-HR' => 'jedan dva')), array('Hello <text1>', array('eng-GB' => 'Hello one', 'cro-HR' => 'Hello jedan')), array('Hello, <text1> and <text2> and then goodbye', array('eng-GB' => 'Hello, one and two and then goodbye', 'cro-HR' => 'Hello, jedan and dva and then goodbye')), array('<text1|text2>', array('eng-GB' => 'one', 'cro-HR' => 'jedan')), array('<text2|text1>', array('eng-GB' => 'two', 'cro-HR' => 'dva')), array('<text3|text1>', array('eng-GB' => 'one', 'cro-HR' => 'jedan')), array('<(<text1> <text2>)>', array('eng-GB' => 'one two', 'cro-HR' => 'jedan dva')), array('<(<text3|text2>)>', array('eng-GB' => 'two', 'cro-HR' => 'dva')), array('<text3|(<text3|text2>)>', array('eng-GB' => 'two', 'cro-HR' => 'dva')), array('<text3|(Hello <text2> and <text1>!)>', array('eng-GB' => 'Hello two and one!', 'cro-HR' => 'Hello dva and jedan!')), array('<text3|(Hello <text3> and <text1>)|text2>!', array('eng-GB' => 'Hello  and one!', 'cro-HR' => 'Hello  and jedan!')), array('<text3|(Hello <text3|text2> and <text1>)|text2>!', array('eng-GB' => 'Hello two and one!', 'cro-HR' => 'Hello dva and jedan!')));
    }