Neos\Flow\Tests\Functional\ObjectManagement\ConfigurationTest::configuredObjectDWillGetAssignedObjectFWithCorrectlyConfiguredConstructorValue PHP Метод

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

See the configuration in Testing/Objects.yaml
    public function configuredObjectDWillGetAssignedObjectFWithCorrectlyConfiguredConstructorValue()
    {
        $instance = $this->objectManager->get(Fixtures\PrototypeClassD::class);
        /** @var $instanceE Fixtures\PrototypeClassE */
        $instanceE = ObjectAccess::getProperty($instance, 'objectE', true);
        $this->assertEquals('The constructor set value', $instanceE->getNullValue());
    }