You are here

private function TestSessionListenerTest::sessionHasNotBeenStarted 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::sessionHasNotBeenStarted()
1 call to TestSessionListenerTest::sessionHasNotBeenStarted()
TestSessionListenerTest::testUnstartedSessionIsNotSave in vendor/symfony/http-kernel/Tests/EventListener/TestSessionListenerTest.php

File

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

Class

TestSessionListenerTest
SessionListenerTest.

Namespace

Symfony\Component\HttpKernel\Tests\EventListener

Code

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