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

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

This test asserts that a supertype that has been inherited can be removed by a supertype again.
    public function superTypesRemovedByInheritanceCanBeAddedAgain()
    {
        $nodeType = $this->getNodeType('Neos.ContentRepository.Testing:SubSubSubShortcut');
        $this->assertSame('Sub-Sub-Sub-Shortcut', $nodeType->getLabel());
        $expectedProperties = array('target' => array('type' => 'string'), 'someMixinProperty' => array('type' => 'string', 'label' => 'Important hint'));
        $this->assertSame($expectedProperties, $nodeType->getProperties());
    }