Skip to content

Commit

Permalink
Rename abstract test case classes with deprecated "Test" suffix (#1870)
Browse files Browse the repository at this point in the history
  • Loading branch information
GromNaN authored Feb 7, 2025
1 parent a5f5613 commit edb600c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@

use const DIRECTORY_SEPARATOR;

abstract class AbstractDoctrineExtensionTest extends TestCase
abstract class AbstractDoctrineExtensionTestCase extends TestCase
{
abstract protected function loadFromFile(ContainerBuilder $container, string $file): void;

Expand Down
2 changes: 1 addition & 1 deletion tests/DependencyInjection/XmlDoctrineExtensionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;

class XmlDoctrineExtensionTest extends AbstractDoctrineExtensionTest
class XmlDoctrineExtensionTest extends AbstractDoctrineExtensionTestCase
{
protected function loadFromFile(ContainerBuilder $container, string $file): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/DependencyInjection/YamlDoctrineExtensionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;

class YamlDoctrineExtensionTest extends AbstractDoctrineExtensionTest
class YamlDoctrineExtensionTest extends AbstractDoctrineExtensionTestCase
{
protected function loadFromFile(ContainerBuilder $container, string $file): void
{
Expand Down

0 comments on commit edb600c

Please sign in to comment.