/** * Test delete */ public function testDelete() { $user = new Phprojekt_User_User(); $user->find(1); $this->setExpectedException('Phprojekt_User_Exception'); $user->delete(); }