Skip to content

Commit 45a8f90

Browse files
OskarStarknicolas-grekas
authored andcommitted
[PHPUnit 10] Use TestCase suffix for abstract tests in /Tests/
1 parent f6824d2 commit 45a8f90

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Tests/DependencyInjection/CompleteConfigurationTest.php renamed to Tests/DependencyInjection/CompleteConfigurationTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
use Symfony\Component\Security\Http\Authenticator\Passport\Badge\CsrfTokenBadge;
3636
use Symfony\Component\Security\Http\Authenticator\Passport\Badge\RememberMeBadge;
3737

38-
abstract class CompleteConfigurationTest extends TestCase
38+
abstract class CompleteConfigurationTestCase extends TestCase
3939
{
4040
abstract protected function getLoader(ContainerBuilder $container);
4141

Tests/DependencyInjection/PhpCompleteConfigurationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use Symfony\Component\DependencyInjection\ContainerBuilder;
1616
use Symfony\Component\DependencyInjection\Loader\PhpFileLoader;
1717

18-
class PhpCompleteConfigurationTest extends CompleteConfigurationTest
18+
class PhpCompleteConfigurationTest extends CompleteConfigurationTestCase
1919
{
2020
protected function getLoader(ContainerBuilder $container)
2121
{

Tests/DependencyInjection/XmlCompleteConfigurationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use Symfony\Component\DependencyInjection\ContainerBuilder;
1616
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
1717

18-
class XmlCompleteConfigurationTest extends CompleteConfigurationTest
18+
class XmlCompleteConfigurationTest extends CompleteConfigurationTestCase
1919
{
2020
protected function getLoader(ContainerBuilder $container)
2121
{

Tests/DependencyInjection/YamlCompleteConfigurationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use Symfony\Component\DependencyInjection\ContainerBuilder;
1616
use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;
1717

18-
class YamlCompleteConfigurationTest extends CompleteConfigurationTest
18+
class YamlCompleteConfigurationTest extends CompleteConfigurationTestCase
1919
{
2020
protected function getLoader(ContainerBuilder $container)
2121
{

0 commit comments

Comments
 (0)