コード例 #1
0
ファイル: HttpTest.php プロジェクト: stubbles/stubbles-peer
 /**
  * @test
  */
 public function getReasonPhraseForUnknownStatusCodeThrowsIllegalArgumentException()
 {
     expect(function () {
         Http::reasonPhraseFor(1);
     })->throws(\InvalidArgumentException::class);
 }