Example #1
0
 /**
  * @covers \Magento\Framework\View\Design\Theme\Customization::getCustomizationPath
  */
 public function testGetCustomizationPath()
 {
     $this->customizationPath->expects($this->once())->method('getCustomizationPath')->with($this->theme)->will($this->returnValue('path'));
     $this->assertEquals('path', $this->model->getCustomizationPath());
 }