1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Backend\Test\Unit\Console\Command;
- use Magento\Backend\Console\Command\AbstractCacheManageCommand;
- abstract class AbstractCacheCommandTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var \Magento\Framework\App\Cache\Manager|\PHPUnit_Framework_MockObject_MockObject
- */
- protected $cacheManagerMock;
- /**
- * @var AbstractCacheManageCommand
- */
- protected $command;
- protected function setUp()
- {
- $this->cacheManagerMock = $this->createMock(\Magento\Framework\App\Cache\Manager::class);
- }
- /**
- * Formats expected output for testExecute data providers
- *
- * @param array $types
- * @return string
- */
- abstract public function getExpectedExecutionOutput(array $types);
- }
|