run tests using PHPUnit 11.5

This commit is contained in:
Christian Flothmann
2024-10-09 11:06:51 +02:00
committed by Christian Flothmann
parent 3a6b697c59
commit a9353e8cf8
3 changed files with 17 additions and 18 deletions

View File

@@ -11,12 +11,13 @@
namespace Symfony\Component\HttpKernel\Tests\DependencyInjection;
use PHPUnit\Framework\Attributes\Group;
use PHPUnit\Framework\Attributes\IgnoreDeprecations;
use PHPUnit\Framework\TestCase;
use Symfony\Component\HttpKernel\DependencyInjection\AddAnnotatedClassesToCachePass;
/**
* @group legacy
*/
#[IgnoreDeprecations]
#[Group('legacy')]
class AddAnnotatedClassesToCachePassTest extends TestCase
{
public function testExpandClasses()

View File

@@ -11,6 +11,8 @@
namespace Symfony\Component\HttpKernel\Tests\DependencyInjection;
use PHPUnit\Framework\Attributes\Group;
use PHPUnit\Framework\Attributes\IgnoreDeprecations;
use PHPUnit\Framework\TestCase;
use Symfony\Component\DependencyInjection\Argument\LazyClosure;
use Symfony\Component\DependencyInjection\Argument\RewindableGenerator;
@@ -519,9 +521,8 @@ class RegisterControllerArgumentLocatorsPassTest extends TestCase
$this->assertFalse($locator->has('service2'));
}
/**
* @group legacy
*/
#[IgnoreDeprecations]
#[Group('legacy')]
public function testTaggedIteratorAndTaggedLocatorAttributes()
{
$container = new ContainerBuilder();

View File

@@ -1,10 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/9.3/phpunit.xsd"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.3/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="vendor/autoload.php"
failOnDeprecation="true"
failOnRisky="true"
failOnWarning="true"
>
@@ -18,7 +19,7 @@
</testsuite>
</testsuites>
<coverage>
<source ignoreSuppressionOfDeprecations="true">
<include>
<directory>./</directory>
</include>
@@ -26,15 +27,11 @@
<directory>./Tests</directory>
<directory>./vendor</directory>
</exclude>
</coverage>
</source>
<listeners>
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener">
<arguments>
<array>
<element key="time-sensitive"><string>Symfony\Component\HttpFoundation</string></element>
</array>
</arguments>
</listener>
</listeners>
<extensions>
<bootstrap class="Symfony\Bridge\PhpUnit\SymfonyExtension">
<parameter name="clock-mock-namespaces" value="Symfony\Component\HttpFoundation" />
</bootstrap>
</extensions>
</phpunit>