示例#1
0
文件: ModelTest.php 项目: titon/model
 /**
  * @expectedException \Titon\Model\Exception\MassAssignmentException
  */
 public function testFillFullyGuarded()
 {
     $profile = new Profile();
     $profile->fill(['user_id' => 4, 'lastLogin' => '2012-02-03 21:22:34', 'currentLogin' => '2013-06-06 19:11:03']);
 }