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