Example #1
0
 /**
  *
  */
 function test_construct()
 {
     $response = new Response();
     $this->assertEquals(null, $response->body());
     $this->assertEquals(new CookieJar(), $response->cookies());
     $this->assertEquals(new HttpHeaders(), $response->headers());
     $this->assertEquals(null, $response->status());
 }