Ejemplo n.º 1
0
 /**
  * @covers Brickoo\Component\Http\HttpMessageBody::getContent
  * @expectedException \InvalidArgumentException
  */
 public function testSetContentInvalidContentArgumentThrowsException()
 {
     $messageBody = new HttpMessageBody("");
     $messageBody->setContent(["wrongType"]);
 }