Esempio n. 1
0
 function testGetMessage()
 {
     $response = new Response();
     $response->setStatus(200);
     $this->assertEquals("200 OK", $response->getMessage());
     $response->setStatus(199);
     $this->assertNull($response->getMessage());
 }