SymfonyBridgeTest WIP (symfony integration tests architecture)

This commit is contained in:
Benjamin Dalsass
2024-01-24 08:35:35 +01:00
parent e831a21354
commit 0923f199a0
14 changed files with 1249 additions and 1 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;
}