-
-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 4.4: (25 commits) [DoctrineBridge] Use new Types::* constants and support new json type [Debug][ErrorHandler] improved deprecation notices for methods new args and return type [BrowserKit] Nested file array prevents uploading file [ExpressionLanguage] Fixed collisions of character operators with object properties [Validator] Remove specific check for Valid targets [PhpUnitBridge] Use trait instead of extending deprecated class Fix versioned namespace clears fix remember me Use strict assertion in asset tests [DoctrineBridge][DoctrineExtractor] Fix indexBy with custom and some core types Do not rely on the current locale when dumping a Graphviz object fix typo [Ldap] force default network timeout [Config] don't throw on missing excluded paths Docs: Typo, grammar [Validator] Add the missing translations for the Polish ("pl") locale [PhpUnitBridge] Add compatibility to PHPUnit 9 #35662 [Routing] Add locale requirement for localized routes [Console] Inline exact-match handling with 4.4 Set previous exception when rethrown from controller resolver ...
- Loading branch information
Showing
4 changed files
with
72 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Symfony package. | ||
* | ||
* (c) Fabien Potencier <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Symfony\Bridge\PhpUnit\Legacy; | ||
|
||
use PHPUnit\TextUI\Command as BaseCommand; | ||
use PHPUnit\TextUI\Configuration\Configuration; | ||
use PHPUnit\TextUI\Configuration\Registry; | ||
use PHPUnit\TextUI\TestRunner as BaseRunner; | ||
use Symfony\Bridge\PhpUnit\SymfonyTestsListener; | ||
|
||
/** | ||
* {@inheritdoc} | ||
* | ||
* @internal | ||
*/ | ||
class CommandForV9 extends BaseCommand | ||
{ | ||
/** | ||
* {@inheritdoc} | ||
*/ | ||
protected function createRunner(): BaseRunner | ||
{ | ||
$this->arguments['listeners'] = isset($this->arguments['listeners']) ? $this->arguments['listeners'] : []; | ||
|
||
$registeredLocally = false; | ||
|
||
foreach ($this->arguments['listeners'] as $registeredListener) { | ||
if ($registeredListener instanceof SymfonyTestsListener) { | ||
$registeredListener->globalListenerDisabled(); | ||
$registeredLocally = true; | ||
break; | ||
} | ||
} | ||
|
||
if (isset($this->arguments['configuration'])) { | ||
$configuration = $this->arguments['configuration']; | ||
if (!$configuration instanceof Configuration) { | ||
$configuration = Registry::getInstance()->get($this->arguments['configuration']); | ||
} | ||
foreach ($configuration->listeners() as $registeredListener) { | ||
if ('Symfony\Bridge\PhpUnit\SymfonyTestsListener' === ltrim($registeredListener->className(), '\\')) { | ||
$registeredLocally = true; | ||
break; | ||
} | ||
} | ||
} | ||
|
||
if (!$registeredLocally) { | ||
$this->arguments['listeners'][] = new SymfonyTestsListener(); | ||
} | ||
|
||
return parent::createRunner(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters