Example #1
0
 public function testAddHeaderWrongKeyType()
 {
     $message = new Message();
     $this->setExpectedException("InvalidArgumentException", "Header key is not a string (Actual type: array).");
     $message->addHeader(array("not-string"), "data");
 }