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