public function testDeletePolicy()
 {
     $policy = $this->testCreatePolicy();
     $this->_policyBackend->delete($policy);
     $this->setExpectedException('Tinebase_Exception_NotFound');
     $this->_policyBackend->get($policy);
 }