FluidTYPO3\Fluidpages\Tests\Unit\Provider\PageProviderTest::testGetInheritedPropertyValueByDottedPath PHP Метод

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

public testGetInheritedPropertyValueByDottedPath ( array $input, string $path, mixed $expected )
$input array
$path string
$expected mixed
    public function testGetInheritedPropertyValueByDottedPath(array $input, $path, $expected)
    {
        $provider = $this->getMock('FluidTYPO3\\Fluidpages\\Provider\\PageProvider', array('getInheritedConfiguration'));
        $result = $this->callInaccessibleMethod($provider, 'getInheritedPropertyValueByDottedPath', $input, $path);
        $this->assertEquals($expected, $result);
    }