/**
  * Test if we can add and remove an IElement
  */
 public function testIfWeCanAddAndRemoveAndValidate()
 {
     $obj1 = Create::factory();
     $obj2 = Create::factory();
     $obj1->add($obj2)->remove($obj2);
     $this->assertTrue($obj1->validate());
 }