예제 #1
0
 /**
  * Test's the status line getter with a non existing http status code
  */
 public function testGetResponseStatusLineWithNonExistingHttpStatusCode()
 {
     $this->response->setStatusCode(999);
     $this->assertSame("HTTP/1.1 999 Unassigned\r\n", $this->response->getStatusLine());
 }