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

removeTagThrowsExceptionIfCalledOnNonStartedSession() public method

    public function removeTagThrowsExceptionIfCalledOnNonStartedSession()
    {
        $session = new Session();
        $session->removeTag('MyTag');
    }
SessionTest