From f54dd38ce131227307254ddc3e93b3c6e5ad4799 Mon Sep 17 00:00:00 2001 From: Oleh Posyniak <oposyniak@magento.com> Date: Fri, 30 Dec 2016 13:59:24 +0200 Subject: [PATCH] MAGETWO-62655: [GitHub] CLI won't work without write permissions #7933 --- .../Framework/Console/Test/Unit/CliTest.php | 47 ------------------- 1 file changed, 47 deletions(-) delete mode 100644 lib/internal/Magento/Framework/Console/Test/Unit/CliTest.php diff --git a/lib/internal/Magento/Framework/Console/Test/Unit/CliTest.php b/lib/internal/Magento/Framework/Console/Test/Unit/CliTest.php deleted file mode 100644 index 8e2761f1716..00000000000 --- a/lib/internal/Magento/Framework/Console/Test/Unit/CliTest.php +++ /dev/null @@ -1,47 +0,0 @@ -<?php -/** - * Copyright © 2016 Magento. All rights reserved. - * See COPYING.txt for license details. - */ -namespace Magento\Framework\Console\Test\Unit; - -use Magento\Framework\Console\Cli; -use PHPUnit_Framework_MockObject_MockObject as Mock; -use Symfony\Component\Console\Input\InputInterface; -use Symfony\Component\Console\Output\OutputInterface; - -class CliTest extends \PHPUnit_Framework_TestCase -{ - /** - * @var Cli - */ - private $model; - - /** - * @var InputInterface|Mock - */ - private $inputMock; - - /** - * @var OutputInterface|Mock - */ - private $outputMock; - - protected function setUp() - { - $this->inputMock = $this->getMockBuilder(InputInterface::class) - ->getMockForAbstractClass(); - $this->outputMock = $this->getMockBuilder(OutputInterface::class) - ->getMockForAbstractClass(); - - $this->model = new Cli(); - } - - public function testDoRun() - { - $this->model->doRun( - $this->inputMock, - $this->outputMock - ); - } -} -- GitLab