Example #1
0
 /**
  * @todo Implement testHasBody().
  */
 public function testHasBody()
 {
     $this->assertFalse($this->object->hasBody());
     $this->object->setBody('some body');
     $this->assertTrue($this->object->hasBody());
 }