Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
AbstractCacheCommandTest.php
Go to the documentation of this file.
1 <?php
8 
10 
11 abstract class AbstractCacheCommandTest extends \PHPUnit\Framework\TestCase
12 {
16  protected $cacheManagerMock;
17 
21  protected $command;
22 
23  protected function setUp()
24  {
25  $this->cacheManagerMock = $this->createMock(\Magento\Framework\App\Cache\Manager::class);
26  }
27 
34  abstract public function getExpectedExecutionOutput(array $types);
35 }