コード例 #1
0
ファイル: LocationTest.php プロジェクト: pnaq57/zf2demo
 public function testLocationToStringReturnsHeaderFormattedString()
 {
     $locationHeader = new Location();
     $locationHeader->setUri('http://www.example.com/path?query');
     $this->assertEquals('Location: http://www.example.com/path?query', $locationHeader->toString());
 }