Ejemplo n.º 1
0
 /**
  * @covers Core\Form\Container::setParent()
  * @covers Core\Form\Container::getParent()
  */
 public function testSetGetParent()
 {
     $input = "improve this";
     $this->target->setParent($input);
     $this->assertSame($this->target->getParent(), $input);
     $this->assertSame($this->target->hasParent(), true);
 }