File tree Expand file tree Collapse file tree 4 files changed +0
-12
lines changed Expand file tree Collapse file tree 4 files changed +0
-12
lines changed Original file line number Diff line number Diff line change 12
12
namespace Symfony \Component \DependencyInjection \Tests \Compiler ;
13
13
14
14
use PHPUnit \Framework \TestCase ;
15
- use Symfony \Bridge \PhpUnit \ExpectDeprecationTrait ;
16
15
use Symfony \Component \DependencyInjection \ChildDefinition ;
17
16
use Symfony \Component \DependencyInjection \Compiler \ResolveChildDefinitionsPass ;
18
17
use Symfony \Component \DependencyInjection \ContainerBuilder ;
19
18
use Symfony \Component \DependencyInjection \Exception \ServiceCircularReferenceException ;
20
19
21
20
class ResolveChildDefinitionsPassTest extends TestCase
22
21
{
23
- use ExpectDeprecationTrait;
24
-
25
22
public function testProcess ()
26
23
{
27
24
$ container = new ContainerBuilder ();
Original file line number Diff line number Diff line change 12
12
namespace Symfony \Component \DependencyInjection \Tests ;
13
13
14
14
use PHPUnit \Framework \TestCase ;
15
- use Symfony \Bridge \PhpUnit \ExpectDeprecationTrait ;
16
15
use Symfony \Component \DependencyInjection \ContainerInterface ;
17
16
use Symfony \Component \DependencyInjection \Definition ;
18
17
use Symfony \Component \DependencyInjection \Exception \InvalidArgumentException ;
19
18
use Symfony \Component \DependencyInjection \Reference ;
20
19
21
20
class DefinitionTest extends TestCase
22
21
{
23
- use ExpectDeprecationTrait;
24
-
25
22
public function testConstructor ()
26
23
{
27
24
$ def = new Definition ('stdClass ' );
Original file line number Diff line number Diff line change 14
14
require_once __DIR__ .'/../Fixtures/includes/AcmeExtension.php ' ;
15
15
16
16
use PHPUnit \Framework \TestCase ;
17
- use Symfony \Bridge \PhpUnit \ExpectDeprecationTrait ;
18
17
use Symfony \Component \Config \Builder \ConfigBuilderGenerator ;
19
18
use Symfony \Component \Config \FileLocator ;
20
19
use Symfony \Component \DependencyInjection \ContainerBuilder ;
25
24
26
25
class PhpFileLoaderTest extends TestCase
27
26
{
28
- use ExpectDeprecationTrait;
29
-
30
27
public function testSupports ()
31
28
{
32
29
$ loader = new PhpFileLoader (new ContainerBuilder (), new FileLocator ());
Original file line number Diff line number Diff line change 12
12
namespace Symfony \Component \DependencyInjection \Tests \Loader ;
13
13
14
14
use PHPUnit \Framework \TestCase ;
15
- use Symfony \Bridge \PhpUnit \ExpectDeprecationTrait ;
16
15
use Symfony \Component \Config \Exception \FileLocatorFileNotFoundException ;
17
16
use Symfony \Component \Config \Exception \LoaderLoadException ;
18
17
use Symfony \Component \Config \FileLocator ;
46
45
47
46
class YamlFileLoaderTest extends TestCase
48
47
{
49
- use ExpectDeprecationTrait;
50
-
51
48
protected static $ fixturesPath ;
52
49
53
50
public static function setUpBeforeClass (): void
You can’t perform that action at this time.
0 commit comments