コード例 #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());
 }