Beispiel #1
0
 function testMake()
 {
     $response = new Response();
     $response->make("abc", 302, array("blah" => 123));
     $this->assertEquals("abc", $response->getBody());
     $this->assertEquals(302, $response->getStatus());
     $this->assertEquals(123, $response->getHeader("blah"));
 }