/** * Try to change type of user * when there is no connection to * storage. * @expectedException Exception */ public function testSetTypeException() { $service = new User(); $service->setDataSource(new PDOMock()); $service->setType(2, 1); }