Neos\Flow\Tests\Functional\ObjectManagement\DependencyInjectionTest::transitivePrototypeDependenciesWithExplicitObjectConfigurationAreConstructedCorrectly PHP Method

transitivePrototypeDependenciesWithExplicitObjectConfigurationAreConstructedCorrectly() public method

Please note that this issue occurs ONLY when creating an object with a dependency that itself takes an prototype-scoped object as constructor argument and that dependency was explicitly configured in the package's Objects.yaml.
See also: https://jira.neos.io/browse/FLOW-175
    public function transitivePrototypeDependenciesWithExplicitObjectConfigurationAreConstructedCorrectly()
    {
        $classWithTransitivePrototypeDependency = new ClassWithTransitivePrototypeDependency();
        $this->assertEquals('Hello World!', $classWithTransitivePrototypeDependency->getTestValue());
    }