You are here

private function TestSessionListenerTest::sessionMustNotBeSaved 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::sessionMustNotBeSaved()
2 calls to TestSessionListenerTest::sessionMustNotBeSaved()
TestSessionListenerTest::testShouldNotSaveSubRequestSession in vendor/symfony/http-kernel/Tests/EventListener/TestSessionListenerTest.php
TestSessionListenerTest::testUnstartedSessionIsNotSave in vendor/symfony/http-kernel/Tests/EventListener/TestSessionListenerTest.php

File

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

Class

TestSessionListenerTest
SessionListenerTest.

Namespace

Symfony\Component\HttpKernel\Tests\EventListener

Code

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