public function StreamedResponseTest::testSendContentWithNonCallable

@expectedException \LogicException

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/StreamedResponseTest.php, line 77

Class

StreamedResponseTest

Namespace

Symfony\Component\HttpFoundation\Tests

Code

public function testSendContentWithNonCallable() {
  $response = new StreamedResponse(null);
  $response
    ->sendContent();
}