Move Console namespace one level up

This commit is contained in:
Philipp Holzer 2019-05-02 23:17:35 +02:00
parent 2628da422a
commit d716a3326f
No known key found for this signature in database
GPG key ID: 517BE60E2CE5C8A5
23 changed files with 46 additions and 44 deletions

View file

@ -0,0 +1,46 @@
<?php
namespace Friendica\Test\src\Console;
use Asika\SimpleConsole\Console;
use Friendica\Test\MockedTest;
use Friendica\Test\Util\AppMockTrait;
use Friendica\Test\Util\Intercept;
use Friendica\Test\Util\VFSTrait;
abstract class ConsoleTest extends MockedTest
{
use VFSTrait;
use AppMockTrait;
/**
* @var array The default argv for a Console Instance
*/
protected $consoleArgv = [ 'consoleTest.php' ];
protected function setUp()
{
parent::setUp();
Intercept::setUp();
$this->setUpVfsDir();
}
/**
* Dumps the execution of an console output to a string and returns it
*
* @param Console $console The current console instance
*
* @return string the output of the execution
*/
protected function dumpExecute($console)
{
Intercept::reset();
$console->execute();
$returnStr = Intercept::$cache;
Intercept::reset();
return $returnStr;
}
}