コード例 #1
0
ファイル: AbstractTest.php プロジェクト: relue/magento2
 public function testSetGetIsAnonymous()
 {
     $this->assertFalse($this->_block->getIsAnonymous());
     $this->_block->setIsAnonymous(true);
     $this->assertTrue($this->_block->getIsAnonymous());
 }