8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0a14b1 commit fc86d10Copy full SHA for fc86d10
src/Symfony/Bridge/PhpUnit/Tests/DeprecationErrorHandler/DeprecationTest.php
@@ -16,6 +16,13 @@
16
17
class DeprecationTest extends TestCase
18
{
19
+ public static function setUpBeforeClass(): void
20
+ {
21
+ // Use Deprecation class of the repository. Without that, Deprecation
22
+ // class from vendors that is not up to date during PR is used
23
+ require_once __DIR__.'/../../DeprecationErrorHandler/Deprecation.php';
24
+ }
25
+
26
public function testItCanDetermineTheClassWhereTheDeprecationHappened()
27
28
$deprecation = new Deprecation('💩', $this->debugBacktrace(), __FILE__);
0 commit comments