private function TestSessionListenerTest::sessionMustNotBeSaved in Zircon Profile 8.0
Same name and namespace in other branches
- 8 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\EventListenerCode
private function sessionMustNotBeSaved() {
$this->session
->expects($this
->never())
->method('save');
}