You are here

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

File

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

Class

TestSessionListenerTest
SessionListenerTest.

Namespace

Symfony\Component\HttpKernel\Tests\EventListener

Code

private function sessionMustBeSaved() {
  $this->session
    ->expects($this
    ->once())
    ->method('save');
}