Skip to content

Commit edb600c

Browse files
authored
Rename abstract test case classes with deprecated "Test" suffix (#1870)
1 parent a5f5613 commit edb600c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/DependencyInjection/AbstractDoctrineExtensionTest.php renamed to tests/DependencyInjection/AbstractDoctrineExtensionTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858

5959
use const DIRECTORY_SEPARATOR;
6060

61-
abstract class AbstractDoctrineExtensionTest extends TestCase
61+
abstract class AbstractDoctrineExtensionTestCase extends TestCase
6262
{
6363
abstract protected function loadFromFile(ContainerBuilder $container, string $file): void;
6464

tests/DependencyInjection/XmlDoctrineExtensionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use Symfony\Component\DependencyInjection\ContainerBuilder;
77
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
88

9-
class XmlDoctrineExtensionTest extends AbstractDoctrineExtensionTest
9+
class XmlDoctrineExtensionTest extends AbstractDoctrineExtensionTestCase
1010
{
1111
protected function loadFromFile(ContainerBuilder $container, string $file): void
1212
{

tests/DependencyInjection/YamlDoctrineExtensionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use Symfony\Component\DependencyInjection\ContainerBuilder;
77
use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;
88

9-
class YamlDoctrineExtensionTest extends AbstractDoctrineExtensionTest
9+
class YamlDoctrineExtensionTest extends AbstractDoctrineExtensionTestCase
1010
{
1111
protected function loadFromFile(ContainerBuilder $container, string $file): void
1212
{

0 commit comments

Comments
 (0)