Neos\Flow\Tests\Unit\Property\PropertyMapperTest::dataProviderForFindTypeConverter PHP Method

dataProviderForFindTypeConverter() public method

Simple type conversion
    public function dataProviderForFindTypeConverter()
    {
        return [['someStringSource', 'string', ['string' => ['string' => [10 => $this->getMockTypeConverter('string2string,prio10'), 1 => $this->getMockTypeConverter('string2string,prio1')]]], 'string2string,prio10'], [['some' => 'array'], 'string', ['array' => ['string' => [10 => $this->getMockTypeConverter('array2string,prio10'), 1 => $this->getMockTypeConverter('array2string,prio1')]]], 'array2string,prio10'], ['someStringSource', 'bool', ['string' => ['boolean' => [10 => $this->getMockTypeConverter('string2boolean,prio10'), 1 => $this->getMockTypeConverter('string2boolean,prio1')]]], 'string2boolean,prio10'], ['someStringSource', 'int', ['string' => ['integer' => [10 => $this->getMockTypeConverter('string2integer,prio10'), 1 => $this->getMockTypeConverter('string2integer,prio1')]]], 'string2integer,prio10']];
    }