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

getTagsThrowsExceptionIfCalledOnNonStartedSession() public method

    public function getTagsThrowsExceptionIfCalledOnNonStartedSession()
    {
        $session = new Session();
        $session->getTags();
    }
SessionTest