Neos\Flow\Tests\Functional\Session\SessionManagementTest::objectManagerAlwaysReturnsANewSessionInstanceIfClassNameIsSpecified PHP Method

objectManagerAlwaysReturnsANewSessionInstanceIfClassNameIsSpecified() public method

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