コード例 #1
0
 public function testIsAssetMinification()
 {
     $contentType = 'content type';
     $this->scopeConfigMock->expects($this->once())->method('isSetFlag')->with(sprintf(Config::XML_PATH_MINIFICATION_ENABLED, $contentType), \Magento\Store\Model\ScopeInterface::SCOPE_STORE)->willReturn(true);
     $this->assertTrue($this->model->isAssetMinification($contentType));
 }