public function ResponseTest::testIsInformational

File

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

Class

ResponseTest

Namespace

Symfony\Component\HttpFoundation\Tests

Code

public function testIsInformational() {
  $response = new Response('', 100);
  $this
    ->assertTrue($response
    ->isInformational());
  $response = new Response('', 200);
  $this
    ->assertFalse($response
    ->isInformational());
}