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

getDataThrowsExceptionIfSessionIsNotStarted() public method

    public function getDataThrowsExceptionIfSessionIsNotStarted()
    {
        $session = new Session();
        $session->getData('some key');
    }
SessionTest