We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1931578 commit 2a74f74Copy full SHA for 2a74f74
tests/Functional/Security/Http/Logout/ContextInvalidationLogoutHandlerTest.php
@@ -16,13 +16,18 @@
16
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
17
use Symfony\Component\BrowserKit\Cookie;
18
use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken;
19
+use Symfony\Component\Security\Http\Event\LogoutEvent;
20
21
class ContextInvalidationLogoutHandlerTest extends WebTestCase
22
{
23
use MockeryPHPUnitIntegration;
24
25
public function testLogout()
26
27
+ if (class_exists(LogoutEvent::class)) {
28
+ $this->markTestSkipped('This test does not work with Symfony 5.1.');
29
+ }
30
+
31
$client = static::createClient();
32
$session = $client->getContainer()->get('session');
33
0 commit comments