Neos\ContentRepository\Tests\Unit\Domain\Model\NodeTypeTest::getConfigurationReturnsTheConfigurationWithTheSpecifiedPath PHP Метод

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

    public function getConfigurationReturnsTheConfigurationWithTheSpecifiedPath()
    {
        $nodeType = new NodeType('Neos.ContentRepository:Base', array(), array('someKey' => array('someSubKey' => 'someValue')));
        $this->assertSame('someValue', $nodeType->getConfiguration('someKey.someSubKey'));
    }