Neos\Flow\Tests\Functional\Session\SessionManagementTest::objectManagerAlwaysReturnsANewSessionInstanceIfClassNameIsSpecified PHP Метод

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

    public function objectManagerAlwaysReturnsANewSessionInstanceIfClassNameIsSpecified()
    {
        $session1 = $this->objectManager->get(Session\Session::class);
        $session2 = $this->objectManager->get(Session\Session::class);
        $this->assertNotSame($session1, $session2);
    }