function PsrResponseSubscriberTest::testDoesNotConvertControllerResult
Same name in other branches
- 9 core/tests/Drupal/Tests/Core/EventSubscriber/PsrResponseSubscriberTest.php \Drupal\Tests\Core\EventSubscriber\PsrResponseSubscriberTest::testDoesNotConvertControllerResult()
- 10 core/tests/Drupal/Tests/Core/EventSubscriber/PsrResponseSubscriberTest.php \Drupal\Tests\Core\EventSubscriber\PsrResponseSubscriberTest::testDoesNotConvertControllerResult()
- 11.x core/tests/Drupal/Tests/Core/EventSubscriber/PsrResponseSubscriberTest.php \Drupal\Tests\Core\EventSubscriber\PsrResponseSubscriberTest::testDoesNotConvertControllerResult()
Tests altering and finished event.
@covers ::onKernelView
File
-
core/
tests/ Drupal/ Tests/ Core/ EventSubscriber/ PsrResponseSubscriberTest.php, line 64
Class
- PsrResponseSubscriberTest
- @coversDefaultClass \Drupal\Core\EventSubscriber\PsrResponseSubscriber @group EventSubscriber
Namespace
Drupal\Tests\Core\EventSubscriberCode
public function testDoesNotConvertControllerResult() {
$event = $this->createEventMock([]);
$event->expects($this->never())
->method('setResponse');
$this->psrResponseSubscriber
->onKernelView($event);
$event = $this->createEventMock(NULL);
$event->expects($this->never())
->method('setResponse');
$this->psrResponseSubscriber
->onKernelView($event);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.