public function PsrResponseSubscriberTest::testDoesNotConvertControllerResult in Drupal 10
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/EventSubscriber/PsrResponseSubscriberTest.php \Drupal\Tests\Core\EventSubscriber\PsrResponseSubscriberTest::testDoesNotConvertControllerResult()
- 9 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 65
Class
- PsrResponseSubscriberTest
- @coversDefaultClass \Drupal\Core\EventSubscriber\PsrResponseSubscriber @group EventSubscriber
Namespace
Drupal\Tests\Core\EventSubscriberCode
public function testDoesNotConvertControllerResult() {
$event = $this
->createEvent([]);
$this->psrResponseSubscriber
->onKernelView($event);
$this
->assertNull($event
->getResponse());
$event = $this
->createEvent(NULL);
$this->psrResponseSubscriber
->onKernelView($event);
$this
->assertNull($event
->getResponse());
}