public function ResponseTest::testIsNotFound

File

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

Class

ResponseTest

Namespace

Symfony\Component\HttpFoundation\Tests

Code

public function testIsNotFound() {
  $response = new Response('', 404);
  $this
    ->assertTrue($response
    ->isNotFound());
  $response = new Response('', 200);
  $this
    ->assertFalse($response
    ->isNotFound());
}