diff --git a/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/AbstractSoftReferenceParserTest.php b/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/AbstractSoftReferenceParserTestCase.php
similarity index 97%
rename from typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/AbstractSoftReferenceParserTest.php
rename to typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/AbstractSoftReferenceParserTestCase.php
index dd70b5fa2ae63133c05dd0287d6418d984beaa20..21f1a04c35592f518db7d2d6d61438a599dd7b46 100644
--- a/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/AbstractSoftReferenceParserTest.php
+++ b/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/AbstractSoftReferenceParserTestCase.php
@@ -31,7 +31,7 @@ use TYPO3\CMS\Core\DataHandling\SoftReference\UrlSoftReferenceParser;
 use TYPO3\CMS\Core\EventDispatcher\NoopEventDispatcher;
 use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
 
-abstract class AbstractSoftReferenceParserTest extends UnitTestCase
+abstract class AbstractSoftReferenceParserTestCase extends UnitTestCase
 {
     protected bool $resetSingletonInstances = true;
 
diff --git a/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/EmailSoftReferenceParserTest.php b/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/EmailSoftReferenceParserTest.php
index 6ac88b520d64c5510516a2d0e3ef28e3fef302fe..f095b012f8daccc815e057aef0a3affe0bd816b5 100644
--- a/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/EmailSoftReferenceParserTest.php
+++ b/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/EmailSoftReferenceParserTest.php
@@ -17,7 +17,7 @@ declare(strict_types=1);
 
 namespace TYPO3\CMS\Core\Tests\Unit\DataHandling\SoftReference;
 
-class EmailSoftReferenceParserTest extends AbstractSoftReferenceParserTest
+class EmailSoftReferenceParserTest extends AbstractSoftReferenceParserTestCase
 {
     public static function emailSoftReferenceParserTestDataProvider(): array
     {
diff --git a/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/ExtensionPathSoftReferenceParserTest.php b/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/ExtensionPathSoftReferenceParserTest.php
index 4207f4f401bda7c902a8f33af26eb78aabebcd3c..58dc2f4a40b3e9807262515011f9adc632129b66 100644
--- a/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/ExtensionPathSoftReferenceParserTest.php
+++ b/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/ExtensionPathSoftReferenceParserTest.php
@@ -17,7 +17,7 @@ declare(strict_types=1);
 
 namespace TYPO3\CMS\Core\Tests\Unit\DataHandling\SoftReference;
 
-class ExtensionPathSoftReferenceParserTest extends AbstractSoftReferenceParserTest
+class ExtensionPathSoftReferenceParserTest extends AbstractSoftReferenceParserTestCase
 {
     public static function extensionPathSoftReferenceParserDataProvider(): array
     {
diff --git a/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/NotifySoftReferenceParserTest.php b/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/NotifySoftReferenceParserTest.php
index f14a8b93f9851e144d2914f7da9b8133ba812fdb..5c58a6a3eaeb93d43b9f2c12960e45515b2a1ce3 100644
--- a/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/NotifySoftReferenceParserTest.php
+++ b/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/NotifySoftReferenceParserTest.php
@@ -17,7 +17,7 @@ declare(strict_types=1);
 
 namespace TYPO3\CMS\Core\Tests\Unit\DataHandling\SoftReference;
 
-class NotifySoftReferenceParserTest extends AbstractSoftReferenceParserTest
+class NotifySoftReferenceParserTest extends AbstractSoftReferenceParserTestCase
 {
     /**
      * @test
diff --git a/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/SubstituteSoftReferenceParserTest.php b/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/SubstituteSoftReferenceParserTest.php
index 4db2c78823fe75df78bf1453f484208a1f837597..99d7451ee923d3fdb1ac10cbb52d3cca2d12bc42 100644
--- a/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/SubstituteSoftReferenceParserTest.php
+++ b/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/SubstituteSoftReferenceParserTest.php
@@ -17,7 +17,7 @@ declare(strict_types=1);
 
 namespace TYPO3\CMS\Core\Tests\Unit\DataHandling\SoftReference;
 
-class SubstituteSoftReferenceParserTest extends AbstractSoftReferenceParserTest
+class SubstituteSoftReferenceParserTest extends AbstractSoftReferenceParserTestCase
 {
     /**
      * @test
diff --git a/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/TypoLinkSoftReferenceParserTest.php b/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/TypoLinkSoftReferenceParserTest.php
index ce2f02633debe576cd0ceedde6a226d201382a33..9aaa3764dbe6201d191d43c03885a37ce53b19ab 100644
--- a/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/TypoLinkSoftReferenceParserTest.php
+++ b/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/TypoLinkSoftReferenceParserTest.php
@@ -22,7 +22,7 @@ use TYPO3\CMS\Core\Resource\Folder;
 use TYPO3\CMS\Core\Resource\ResourceFactory;
 use TYPO3\CMS\Core\Utility\GeneralUtility;
 
-class TypoLinkSoftReferenceParserTest extends AbstractSoftReferenceParserTest
+class TypoLinkSoftReferenceParserTest extends AbstractSoftReferenceParserTestCase
 {
     public static function findRefReturnsParsedElementsDataProvider(): array
     {
diff --git a/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/TypoLinkTagSoftReferenceParserTest.php b/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/TypoLinkTagSoftReferenceParserTest.php
index 59511226da7527f7fb8a112b4aedb1a23b7dea5e..e896e252bdcab78845cd2bd664e98dfa03da3f92 100644
--- a/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/TypoLinkTagSoftReferenceParserTest.php
+++ b/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/TypoLinkTagSoftReferenceParserTest.php
@@ -22,7 +22,7 @@ use TYPO3\CMS\Core\Resource\Folder;
 use TYPO3\CMS\Core\Resource\ResourceFactory;
 use TYPO3\CMS\Core\Utility\GeneralUtility;
 
-class TypoLinkTagSoftReferenceParserTest extends AbstractSoftReferenceParserTest
+class TypoLinkTagSoftReferenceParserTest extends AbstractSoftReferenceParserTestCase
 {
     public static function findRefReturnsParsedElementsDataProvider(): array
     {
diff --git a/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/UrlSoftReferenceParserTest.php b/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/UrlSoftReferenceParserTest.php
index 4a8678ad0689cbc596833a6290c4172c5c63d7a3..d623dc4e915cb9395b5b6a3eab0f645c1a48a994 100644
--- a/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/UrlSoftReferenceParserTest.php
+++ b/typo3/sysext/core/Tests/Unit/DataHandling/SoftReference/UrlSoftReferenceParserTest.php
@@ -17,7 +17,7 @@ declare(strict_types=1);
 
 namespace TYPO3\CMS\Core\Tests\Unit\DataHandling\SoftReference;
 
-class UrlSoftReferenceParserTest extends AbstractSoftReferenceParserTest
+class UrlSoftReferenceParserTest extends AbstractSoftReferenceParserTestCase
 {
     public static function urlSoftReferenceParserTestDataProvider(): array
     {