You are here

public function DumpListenerTest::testSubscribedEvents in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/Tests/EventListener/DumpListenerTest.php \Symfony\Component\HttpKernel\Tests\EventListener\DumpListenerTest::testSubscribedEvents()

File

vendor/symfony/http-kernel/Tests/EventListener/DumpListenerTest.php, line 28

Class

DumpListenerTest
DumpListenerTest.

Namespace

Symfony\Component\HttpKernel\Tests\EventListener

Code

public function testSubscribedEvents() {
  $this
    ->assertSame(array(
    KernelEvents::REQUEST => array(
      'configure',
      1024,
    ),
  ), DumpListener::getSubscribedEvents());
}