예제 #1
0
 public function testClean()
 {
     $this->_cache->expects(
         $this->once()
     )->method(
         'clean'
     )->with(
         \Zend_Cache::CLEANING_MODE_MATCHING_TAG,
         [\Magento\Framework\App\Config\ScopePool::CACHE_TAG]
     );
     $this->_object->clean('testScope');
 }