예제 #1
0
    public function testnullIsReturnedWhenRequestingANonExistingHeader()
    {
        $response = new Http\Response("HTTP/1.1 200 OK\r\nCache-Control: max-age=30\r\nCache-Control: s-maxage=50\r\n\r\n");

        $this->assertEquals(null, $response->getHeader('Host'));
    }