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