/**
  * Tests the static method that resolves the appropriate message for the passed status code.
  *
  * @return void
  */
 public function testGetStatusReasonPhraseByCode()
 {
     $this->assertSame(Protocol::STATUS_REASONPHRASE_200, Protocol::getStatusReasonPhraseByCode(200));
 }