Neos\ContentRepository\Tests\Unit\Domain\Service\NodeTypeManagerTest::getNodeTypesReturnsRegisteredNodeTypes PHP Метод

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

    public function getNodeTypesReturnsRegisteredNodeTypes()
    {
        $expectedNodeTypes = array('Neos.ContentRepository.Testing:ContentObject', 'Neos.ContentRepository.Testing:MyFinalType', 'Neos.ContentRepository.Testing:AbstractType', 'Neos.ContentRepository.Testing:Text', 'Neos.ContentRepository.Testing:TextWithImage', 'Neos.ContentRepository.Testing:Document', 'Neos.ContentRepository.Testing:Page', 'Neos.ContentRepository.Testing:Page2', 'Neos.ContentRepository.Testing:Page3', 'Neos.ContentRepository.Testing:DocumentWithSupertypes', 'Neos.ContentRepository:FallbackNode');
        $this->assertEquals($expectedNodeTypes, array_keys($this->nodeTypeManager->getNodeTypes()));
    }