updated core from 8.4 to 8.5 : bug with login_destination

This commit is contained in:
Bachir Soussi Chiadmi
2018-03-13 14:01:21 +01:00
parent 0d78da249b
commit e668535a4e
3486 changed files with 89604 additions and 33283 deletions
+9 -2
View File
@@ -3,11 +3,12 @@
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.
@@ -40,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"));