예제 #1
0
파일: ListTest.php 프로젝트: relue/magento2
 public function testGetPriceBlockTemplate()
 {
     $this->assertNull($this->_block->getPriceBlockTemplate());
     $this->_block->setData('price_block_template', 'test');
     $this->assertEquals('test', $this->_block->getPriceBlockTemplate());
 }