예제 #1
0
파일: UserTest.php 프로젝트: Nenuial/Yrch
 public function testReviewNotifications()
 {
     $this->assertTrue($this->user->getReviewNotifications(), 'Review notifications are enabled by default');
     $this->user->setReviewNotifications(false);
     $this->assertFalse($this->user->getReviewNotifications());
 }