示例#1
0
文件: ModelTest.php 项目: titon/model
 public function testIsFillable()
 {
     $profile = new Profile();
     $this->assertTrue($this->object->isFillable('username'));
     $this->assertFalse($this->object->isFillable('password'));
     $this->assertTrue($profile->isFillable('lastLogin'));
     // All allowed
 }