예제 #1
0
파일: UserTest.php 프로젝트: Nenuial/Yrch
 public function testContactAllowed()
 {
     $this->assertTrue($this->user->isContactAllowed());
     $this->user->setContactAllowed(false);
     $this->assertFalse($this->user->isContactAllowed());
 }