コード例 #1
0
 public function testCanSetCustomReasonCode()
 {
     $response = new Response(new \App\Config\AppConfig());
     $response->setStatusCode(200, 'Not the mama');
     $this->assertEquals('Not the mama', $response->getReason());
 }
コード例 #2
0
 public function testGetReasonReturnsEmptyStringWithNoStatus()
 {
     $response = new Response(new App());
     $this->assertEquals('', $response->getReason());
 }