You are here

public function RedirectResponseTest::testCreate in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-foundation/Tests/RedirectResponseTest.php \Symfony\Component\HttpFoundation\Tests\RedirectResponseTest::testCreate()

File

vendor/symfony/http-foundation/Tests/RedirectResponseTest.php, line 76

Class

RedirectResponseTest

Namespace

Symfony\Component\HttpFoundation\Tests

Code

public function testCreate() {
  $response = RedirectResponse::create('foo', 301);
  $this
    ->assertInstanceOf('Symfony\\Component\\HttpFoundation\\RedirectResponse', $response);
  $this
    ->assertEquals(301, $response
    ->getStatusCode());
}