public function testDeleteDevice()
 {
     $device = $this->testCreateDevice();
     $this->_deviceBackend->delete($device);
     $this->setExpectedException('Tinebase_Exception_NotFound');
     $this->_deviceBackend->get($device);
 }