Beispiel #1
0
 /**
  * @covers \Core\Response\Response::setContentLocation
  */
 public function testSetContentLocationWithValue()
 {
     $response = new Response();
     $response->setContentLocation('/test?something=something');
     $this->assertSame('/test?something=something', $response->getHeader('Content-Location'));
 }