Skip to content
Snippets Groups Projects
Commit c1765283 authored by Christian Kuhn's avatar Christian Kuhn
Browse files

[TASK] Rename AbstractCommandTest

phpunit 10 expects classes that end with "Test"
to not be abstract.

Resolves: #100486
Related: #100249
Releases: main
Change-Id: I846976ed76eb14ddb5e74d1927842feec4f8355e
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/78493


Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
parent d65766bd
Branches
Tags
No related merge requests found
......@@ -20,7 +20,7 @@ namespace TYPO3\CMS\Core\Tests\Functional\Command;
use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\TestingFramework\Core\Functional\FunctionalTestCase;
abstract class AbstractCommandTest extends FunctionalTestCase
abstract class AbstractCommandTestCase extends FunctionalTestCase
{
protected function executeConsoleCommand(string $cmdline, ...$args): array
{
......
......@@ -23,7 +23,7 @@ use TYPO3\CMS\Core\Core\Environment;
use TYPO3\CMS\Core\DependencyInjection\ContainerBuilder;
use TYPO3\CMS\Core\Package\PackageManager;
class CacheFlushCommandTest extends AbstractCommandTest
class CacheFlushCommandTest extends AbstractCommandTestCase
{
protected array $configurationToUseInTestInstance = [
'SYS' => [
......
......@@ -22,7 +22,7 @@ use TYPO3\CMS\Core\DependencyInjection\ContainerBuilder;
use TYPO3\CMS\Core\Package\PackageManager;
use TYPO3\CMS\Core\Utility\GeneralUtility;
class CacheWarmupCommandTest extends AbstractCommandTest
class CacheWarmupCommandTest extends AbstractCommandTestCase
{
/**
* @test
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment