/**
  * test deleting a Tweet that does not exist
  *
  * @expectedException PDOException
  **/
 public function testDeleteInvalidUser()
 {
     //create a user and try to delete without actually inserting it
     $user = new User(null, $this->company->getCompanyId(), $this->crew->getCrewId(), $this->access->getAccessId(), $this->VALID_USERPHONE, $this->VALID_USERFIRSTNAME, $this->VALID_USERLASTNAME, $this->VALID_USEREMAIL, $this->VALID_USERACTIVATION, $this->VALID_USERHASH, $this->VALID_USERSALT);
     $user->delete($this->getPDO());
 }