Update Composer, update everything

This commit is contained in:
Oliver Davies 2018-11-23 12:29:20 +00:00
parent ea3e94409f
commit dda5c284b6
19527 changed files with 1135420 additions and 351004 deletions

View file

@ -1,12 +1,14 @@
<?php
namespace Drupal\Tests\TestSuites;
use Drupal\simpletest\TestDiscovery;
use PHPUnit\Framework\TestSuite;
/**
* Base class for Drupal test suites.
*/
abstract class TestSuiteBase extends \PHPUnit_Framework_TestSuite {
abstract class TestSuiteBase extends TestSuite {
/**
* Finds extensions in a Drupal installation.
@ -39,7 +41,13 @@ abstract class TestSuiteBase extends \PHPUnit_Framework_TestSuite {
// always inside of core/tests/Drupal/${suite_namespace}Tests. The exception
// to this is Unit tests for historical reasons.
if ($suite_namespace == 'Unit') {
$this->addTestFiles(TestDiscovery::scanDirectory("Drupal\\Tests\\", "$root/core/tests/Drupal/Tests"));
$tests = TestDiscovery::scanDirectory("Drupal\\Tests\\", "$root/core/tests/Drupal/Tests");
$tests = array_flip(array_filter(array_flip($tests), function ($test_class) {
// The Listeners directory does not contain tests. Use the class name
// to be compatible with all operating systems.
return !preg_match('/^Drupal\\\\Tests\\\\Listeners\\\\/', $test_class);
}));
$this->addTestFiles($tests);
}
else {
$this->addTestFiles(TestDiscovery::scanDirectory("Drupal\\${suite_namespace}Tests\\", "$root/core/tests/Drupal/${suite_namespace}Tests"));