Neos\Neos\Tests\Functional\Service\NodeTypeSchemaBuilderTest::nodeTypesContainCorrectSuperTypes PHP Метод

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

    public function nodeTypesContainCorrectSuperTypes()
    {
        $this->assertTrue(array_key_exists('Neos.Neos.BackendSchemaControllerTest:AlohaNodeType', $this->schema['nodeTypes']), 'AlohaNodeType');
        $expectedSuperTypes = array('Neos.Neos.BackendSchemaControllerTest:ParentAlohaNodeType' => true);
        $expectedPropertyConfiguration = array('fallbackCase' => array('defined', 'as', 'plain', 'array'), 'sampleCase' => array('h3', 'sup'));
        $this->assertEquals($expectedSuperTypes, $this->schema['nodeTypes']['Neos.Neos.BackendSchemaControllerTest:AlohaNodeType']['superTypes']);
        $this->assertEquals($expectedPropertyConfiguration, $this->schema['nodeTypes']['Neos.Neos.BackendSchemaControllerTest:AlohaNodeType']['properties']['text']['ui']['aloha']);
    }