Skip to content

Commit 14ee5e7

Browse files
Merge branch '4.3' into 4.4
* 4.3: Re-enable previously failing PHP 7.4 test cases [PhpUnitBridge] fix uninitialized variable Revert "bug #33618 fix tests depending on other components' tests (xabbuh)" install from source to include components tests
2 parents d8527f3 + e85c74d commit 14ee5e7

File tree

4 files changed

+0
-45
lines changed

4 files changed

+0
-45
lines changed

Tests/Compiler/AutowirePassTest.php

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -349,11 +349,6 @@ public function testClassNotFoundThrowsException()
349349
}
350350
}
351351

352-
/**
353-
* @group issue-32995
354-
*
355-
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
356-
*/
357352
public function testParentClassNotFoundThrowsException()
358353
{
359354
$container = new ContainerBuilder();
@@ -627,11 +622,6 @@ public function getCreateResourceTests()
627622
];
628623
}
629624

630-
/**
631-
* @group issue-32995
632-
*
633-
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
634-
*/
635625
public function testIgnoreServiceWithClassNotExisting()
636626
{
637627
$container = new ContainerBuilder();
@@ -834,11 +824,6 @@ public function testExceptionWhenAliasExists()
834824
}
835825
}
836826

837-
/**
838-
* @group issue-32995
839-
*
840-
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
841-
*/
842827
public function testExceptionWhenAliasDoesNotExist()
843828
{
844829
$container = new ContainerBuilder();

Tests/Compiler/ResolveBindingsPassTest.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,6 @@ public function testUnusedBinding()
6565
$pass->process($container);
6666
}
6767

68-
/**
69-
* @group issue-32995
70-
*
71-
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
72-
*/
7368
public function testMissingParent()
7469
{
7570
$this->expectException('Symfony\Component\DependencyInjection\Exception\InvalidArgumentException');

Tests/Dumper/PhpDumperTest.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1098,11 +1098,6 @@ public function testInlineSelfRef()
10981098
$this->assertStringEqualsFile(self::$fixturesPath.'/php/services_inline_self_ref.php', $dumper->dump(['class' => 'Symfony_DI_PhpDumper_Test_Inline_Self_Ref']));
10991099
}
11001100

1101-
/**
1102-
* @group issue-32995
1103-
*
1104-
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
1105-
*/
11061101
public function testHotPathOptimizations()
11071102
{
11081103
$container = include self::$fixturesPath.'/containers/container_inline_requires.php';

Tests/Loader/FileLoaderTest.php

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,6 @@ public function testRegisterClasses()
106106
);
107107
}
108108

109-
/**
110-
* @group issue-32995
111-
*
112-
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
113-
*/
114109
public function testRegisterClassesWithExclude()
115110
{
116111
$container = new ContainerBuilder();
@@ -140,11 +135,6 @@ public function testRegisterClassesWithExclude()
140135
);
141136
}
142137

143-
/**
144-
* @group issue-32995
145-
*
146-
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
147-
*/
148138
public function testRegisterClassesWithExcludeAsArray()
149139
{
150140
$container = new ContainerBuilder();
@@ -164,11 +154,6 @@ public function testRegisterClassesWithExcludeAsArray()
164154
$this->assertFalse($container->has(DeeperBaz::class));
165155
}
166156

167-
/**
168-
* @group issue-32995
169-
*
170-
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
171-
*/
172157
public function testNestedRegisterClasses()
173158
{
174159
$container = new ContainerBuilder();
@@ -197,11 +182,6 @@ public function testNestedRegisterClasses()
197182
$this->assertFalse($alias->isPrivate());
198183
}
199184

200-
/**
201-
* @group issue-32995
202-
*
203-
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
204-
*/
205185
public function testMissingParentClass()
206186
{
207187
$container = new ContainerBuilder();

0 commit comments

Comments
 (0)