Neos\Flow\Tests\Unit\Session\SessionTest::hasKeyThrowsExceptionIfCalledOnNonStartedSession PHP 메소드

hasKeyThrowsExceptionIfCalledOnNonStartedSession() 공개 메소드

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