示例#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());
 }