/**
  * @return void
  */
 public function testUnsetElementFromIfconfigList()
 {
     $this->assertContains('element4', $this->model->getIfconfigList());
     $this->model->unsetElementFromIfconfigList('element4');
     $this->assertNotContains('element4', $this->model->getIfconfigList());
 }