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

addTagThrowsExceptionIfTagIsNotValid() public method

    public function addTagThrowsExceptionIfTagIsNotValid()
    {
        $taggedSession = new Session();
        $this->inject($taggedSession, 'bootstrap', $this->mockBootstrap);
        $this->inject($taggedSession, 'settings', $this->settings);
        $this->inject($taggedSession, 'metaDataCache', $this->createCache('Meta'));
        $this->inject($taggedSession, 'storageCache', $this->createCache('Storage'));
        $this->inject($taggedSession, 'objectManager', $this->mockObjectManager);
        $taggedSession->initializeObject();
        $taggedSession->start();
        $taggedSession->addTag('Invalid Tag Contains Spaces');
    }
SessionTest