示例#1
0
文件: UserTest.php 项目: Nenuial/Yrch
 public function testContactAllowed()
 {
     $this->assertTrue($this->user->isContactAllowed());
     $this->user->setContactAllowed(false);
     $this->assertFalse($this->user->isContactAllowed());
 }