Neos\Flow\Tests\Functional\ObjectManagement\ObjectManagerTest::prototypeIsTheDefaultScopeIfNothingElseWasDefined PHP Method

prototypeIsTheDefaultScopeIfNothingElseWasDefined() public method

    public function prototypeIsTheDefaultScopeIfNothingElseWasDefined()
    {
        $instanceA = new Fixtures\PrototypeClassB();
        $instanceB = new Fixtures\PrototypeClassB();
        $this->assertNotSame($instanceA, $instanceB);
    }