public function BinaryFileResponseTest::testGetContent

File

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

Class

BinaryFileResponseTest

Namespace

Symfony\Component\HttpFoundation\Tests

Code

public function testGetContent() {
  $response = new BinaryFileResponse('README.md');
  $this
    ->assertFalse($response
    ->getContent());
}