Example #1
0
 /**
  * @test
  * @covers Cocur\Ea\MethodFactory::setBody()
  * @covers Cocur\Ea\MethodFactory::getBody()
  */
 public function setBodySetsBodyAndReturnBodyReturnsBody()
 {
     $m = new MethodFactory('foo');
     $m->setBody('echo "TEST";');
     $this->assertSame('echo "TEST";', $m->getBody());
 }