You are here

private function TestSessionListenerTest::sessionHasBeenStarted in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/Tests/EventListener/TestSessionListenerTest.php \Symfony\Component\HttpKernel\Tests\EventListener\TestSessionListenerTest::sessionHasBeenStarted()
2 calls to TestSessionListenerTest::sessionHasBeenStarted()
TestSessionListenerTest::testDoesNotDeleteCookieIfUsingSessionLifetime in vendor/symfony/http-kernel/Tests/EventListener/TestSessionListenerTest.php
TestSessionListenerTest::testShouldSaveMasterRequestSession in vendor/symfony/http-kernel/Tests/EventListener/TestSessionListenerTest.php

File

vendor/symfony/http-kernel/Tests/EventListener/TestSessionListenerTest.php, line 107

Class

TestSessionListenerTest
SessionListenerTest.

Namespace

Symfony\Component\HttpKernel\Tests\EventListener

Code

private function sessionHasBeenStarted() {
  $this->session
    ->expects($this
    ->once())
    ->method('isStarted')
    ->will($this
    ->returnValue(true));
}