Example #1
0
 public function testGetAssetMinificationAdapter()
 {
     $contentType = 'content type';
     $adapter = 'adapter';
     $this->scopeConfigMock->expects($this->once())->method('getValue')->with(sprintf(Config::XML_PATH_MINIFICATION_ADAPTER, $contentType), \Magento\Store\Model\ScopeInterface::SCOPE_STORE)->willReturn($adapter);
     $this->assertSame($adapter, $this->model->getAssetMinificationAdapter($contentType));
 }