N°7870 Prerequisites to test portal services (instantiate a symfony service)

This commit is contained in:
Romain Quetiez
2024-10-02 17:01:06 +02:00
parent c54909f2a3
commit 7a4d29d561
21 changed files with 1233 additions and 17 deletions

View File

@@ -0,0 +1,19 @@
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Bundle\FrameworkBundle\Test;
trait WebTestAssertionsTrait
{
use BrowserKitAssertionsTrait;
use DomCrawlerAssertionsTrait;
use HttpClientAssertionsTrait;
}