From: Art4 Date: Sun, 15 Dec 2024 21:32:23 +0000 (+0000) Subject: rename StorageConfigTest to StorageConfigTestCase X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8401b5b0ee065b54be3203d55e17677aff2ac3eb;p=friendica.git rename StorageConfigTest to StorageConfigTestCase --- diff --git a/tests/StorageConfigTestCase.php b/tests/StorageConfigTestCase.php new file mode 100644 index 0000000000..4b06a8ec59 --- /dev/null +++ b/tests/StorageConfigTestCase.php @@ -0,0 +1,29 @@ +getInstance(); + + $this->assertOption($instance); + } +} diff --git a/tests/src/Core/Storage/FilesystemStorageConfigTest.php b/tests/src/Core/Storage/FilesystemStorageConfigTest.php index 8cbf3e97c8..390266f565 100644 --- a/tests/src/Core/Storage/FilesystemStorageConfigTest.php +++ b/tests/src/Core/Storage/FilesystemStorageConfigTest.php @@ -11,11 +11,12 @@ use Friendica\Core\Config\Capability\IManageConfigValues; use Friendica\Core\L10n; use Friendica\Core\Storage\Capability\ICanConfigureStorage; use Friendica\Core\Storage\Type\FilesystemConfig; +use Friendica\Test\StorageConfigTestCase; use Friendica\Test\Util\VFSTrait; use Mockery\MockInterface; use org\bovigo\vfs\vfsStream; -class FilesystemStorageConfigTest extends StorageConfigTest +class FilesystemStorageConfigTest extends StorageConfigTestCase { use VFSTrait; diff --git a/tests/src/Core/Storage/StorageConfigTest.php b/tests/src/Core/Storage/StorageConfigTest.php deleted file mode 100644 index 78a5e396f6..0000000000 --- a/tests/src/Core/Storage/StorageConfigTest.php +++ /dev/null @@ -1,29 +0,0 @@ -getInstance(); - - $this->assertOption($instance); - } -}