Neos\Flow\Tests\Unit\Session\SessionTest::hasKeyThrowsExceptionIfCalledOnNonStartedSession PHP Method

hasKeyThrowsExceptionIfCalledOnNonStartedSession() public method

    public function hasKeyThrowsExceptionIfCalledOnNonStartedSession()
    {
        $session = new Session();
        $session->hasKey('foo');
    }
SessionTest