Beispiel #1
0
 public function testStandardHeadersCanBeOverwritten()
 {
     $this->res->header['Content-Type'] = 'someother/type';
     $headers = $this->res->getHeaders();
     $this->assertEquals('someother/type', $headers['Content-Type']);
 }