Symfony\Component\HttpFoundation\Tests\ResponseTest::testIsInformational PHP Method

testIsInformational() public method

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

        $response = new Response('', 200);
        $this->assertFalse($response->isInformational());
    }
ResponseTest