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 7ffd22b commit e07c2f1Copy full SHA for e07c2f1
src/Symfony/Bridge/PhpUnit/bin/simple-phpunit
@@ -81,6 +81,11 @@ if (!file_exists("$PHPUNIT_DIR/phpunit-$PHPUNIT_VERSION/phpunit") || md5_file(__
81
82
define('PHPUNIT_COMPOSER_INSTALL', __DIR__.'/vendor/autoload.php');
83
require PHPUNIT_COMPOSER_INSTALL;
84
+if (class_exists('PHPUnit_Util_Blacklist')) {
85
+ PHPUnit_Util_Blacklist::$blacklistedClassNames['\PHPUnit\Framework\TestCase'] = 3;
86
+} else {
87
+ PHPUnit\Util\Blacklist::$blacklistedClassNames['\PHPUnit\Framework\TestCase'] = 3;
88
+}
89
Symfony\Bridge\PhpUnit\TextUI\Command::main();
90
91
EOPHP
0 commit comments