mirror of
https://github.com/friendica/friendica
synced 2024-12-22 14:40:16 +00:00
rename StorageConfigTest to StorageConfigTestCase
This commit is contained in:
parent
b09fb1047f
commit
8401b5b0ee
2 changed files with 4 additions and 3 deletions
|
@ -5,12 +5,12 @@
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: AGPL-3.0-or-later
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
|
|
||||||
namespace Friendica\Test\src\Core\Storage;
|
namespace Friendica\Test;
|
||||||
|
|
||||||
use Friendica\Core\Storage\Capability\ICanConfigureStorage;
|
use Friendica\Core\Storage\Capability\ICanConfigureStorage;
|
||||||
use Friendica\Test\MockedTestCase;
|
use Friendica\Test\MockedTestCase;
|
||||||
|
|
||||||
abstract class StorageConfigTest extends MockedTestCase
|
abstract class StorageConfigTestCase extends MockedTestCase
|
||||||
{
|
{
|
||||||
/** @return ICanConfigureStorage */
|
/** @return ICanConfigureStorage */
|
||||||
abstract protected function getInstance();
|
abstract protected function getInstance();
|
|
@ -11,11 +11,12 @@ use Friendica\Core\Config\Capability\IManageConfigValues;
|
||||||
use Friendica\Core\L10n;
|
use Friendica\Core\L10n;
|
||||||
use Friendica\Core\Storage\Capability\ICanConfigureStorage;
|
use Friendica\Core\Storage\Capability\ICanConfigureStorage;
|
||||||
use Friendica\Core\Storage\Type\FilesystemConfig;
|
use Friendica\Core\Storage\Type\FilesystemConfig;
|
||||||
|
use Friendica\Test\StorageConfigTestCase;
|
||||||
use Friendica\Test\Util\VFSTrait;
|
use Friendica\Test\Util\VFSTrait;
|
||||||
use Mockery\MockInterface;
|
use Mockery\MockInterface;
|
||||||
use org\bovigo\vfs\vfsStream;
|
use org\bovigo\vfs\vfsStream;
|
||||||
|
|
||||||
class FilesystemStorageConfigTest extends StorageConfigTest
|
class FilesystemStorageConfigTest extends StorageConfigTestCase
|
||||||
{
|
{
|
||||||
use VFSTrait;
|
use VFSTrait;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue