function PsrResponseSubscriberTest::testDoesNotConvertControllerResult

Same name in other branches
  1. 9 core/tests/Drupal/Tests/Core/EventSubscriber/PsrResponseSubscriberTest.php \Drupal\Tests\Core\EventSubscriber\PsrResponseSubscriberTest::testDoesNotConvertControllerResult()
  2. 8.9.x core/tests/Drupal/Tests/Core/EventSubscriber/PsrResponseSubscriberTest.php \Drupal\Tests\Core\EventSubscriber\PsrResponseSubscriberTest::testDoesNotConvertControllerResult()
  3. 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 69

Class

PsrResponseSubscriberTest
@coversDefaultClass \Drupal\Core\EventSubscriber\PsrResponseSubscriber @group EventSubscriber

Namespace

Drupal\Tests\Core\EventSubscriber

Code

public function testDoesNotConvertControllerResult() : void {
    $event = $this->createEvent([]);
    $this->psrResponseSubscriber
        ->onKernelView($event);
    $this->assertNull($event->getResponse());
    $event = $this->createEvent(NULL);
    $this->psrResponseSubscriber
        ->onKernelView($event);
    $this->assertNull($event->getResponse());
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.