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

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

This test asserts that a supertype that has been inherited can be removed on a specific type again.
    public function inheritedSuperTypesCanBeRemoved()
    {
        $nodeType = $this->getNodeType('Neos.ContentRepository.Testing:Shortcut');
        $this->assertSame('Shortcut', $nodeType->getLabel());
        $expectedProperties = array('target' => array('type' => 'string'));
        $this->assertSame($expectedProperties, $nodeType->getProperties());
    }