/**
  * try to delete a group
  */
 public function testDeleteGroups()
 {
     $this->testAddGroup();
     $this->_backend->deleteGroups($this->objects['initialGroup']);
     $this->setExpectedException('Tinebase_Exception_Record_NotDefined');
     $group = $this->_backend->getGroupById($this->objects['initialGroup']);
 }
 /**
  * try to delete a group
  *
  */
 public function testDeleteGroups()
 {
     $this->_backend->deleteGroups($this->objects['initialGroup']);
     $this->setExpectedException('Exception');
     $group = $this->_backend->getGroupById($this->objects['initialGroup']);
 }