/**
  * try to check the id of the contact
  */
 public function testgetByUserId()
 {
     Tinebase_Core::getUser()->accountId;
     $contact = $this->_backend->getByUserId(Tinebase_Core::getUser()->accountId);
     $this->assertTrue($contact instanceof Addressbook_Model_Contact);
     $this->setExpectedException('Addressbook_Exception_NotFound');
     $this->_backend->getByUserId('invalid_id');
 }