Neos\ContentRepository\Tests\Functional\Domain\NodesTest::postprocessorUpdatesNodeTypesProperty PHP Method

postprocessorUpdatesNodeTypesProperty() public method

    public function postprocessorUpdatesNodeTypesProperty()
    {
        $rootNode = $this->context->getRootNode();
        $nodeTypeManager = $this->objectManager->get(NodeTypeManager::class);
        $testNodeType = $nodeTypeManager->getNodeType('Neos.ContentRepository.Testing:NodeTypeWithProcessor');
        $fooNode = $rootNode->createNode('foo', $testNodeType);
        $this->assertSame('The value of "someOption" is "someOverriddenValue", the value of "someOtherOption" is "someOtherValue"', $fooNode->getProperty('test1'));
    }
NodesTest