ConsoleTest is now a MockedTest

This commit is contained in:
Philipp Holzer 2019-02-02 19:21:48 +01:00
parent 433d6abe8c
commit 835b5c00ee
No known key found for this signature in database
GPG Key ID: 517BE60E2CE5C8A5
1 changed files with 2 additions and 9 deletions

View File

@ -3,12 +3,12 @@
namespace Friendica\Test\src\Core\Console; namespace Friendica\Test\src\Core\Console;
use Asika\SimpleConsole\Console; use Asika\SimpleConsole\Console;
use Friendica\Test\MockedTest;
use Friendica\Test\Util\AppMockTrait; use Friendica\Test\Util\AppMockTrait;
use Friendica\Test\Util\Intercept; use Friendica\Test\Util\Intercept;
use Friendica\Test\Util\VFSTrait; use Friendica\Test\Util\VFSTrait;
use PHPUnit\Framework\TestCase;
abstract class ConsoleTest extends TestCase abstract class ConsoleTest extends MockedTest
{ {
use VFSTrait; use VFSTrait;
use AppMockTrait; use AppMockTrait;
@ -32,13 +32,6 @@ abstract class ConsoleTest extends TestCase
$this->mockApp($this->root); $this->mockApp($this->root);
} }
protected function tearDown()
{
\Mockery::close();
parent::tearDown();
}
/** /**
* Dumps the execution of an console output to a string and returns it * Dumps the execution of an console output to a string and returns it
* *