示例#1
0
 /**
  * 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);
 }