From dc509d0a4340bf9ba6d7335ebc7bd830b5d3bbf6 Mon Sep 17 00:00:00 2001 From: Nathaniel Catchpole <catch@35733.no-reply.drupal.org> Date: Mon, 12 Sep 2016 16:17:33 +0100 Subject: [PATCH] Issue #2794715 by Mile23, klausi: TestSuiteBaseTest cannot be executed as standalone test --- core/tests/Drupal/Tests/TestSuites/TestSuiteBaseTest.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/tests/Drupal/Tests/TestSuites/TestSuiteBaseTest.php b/core/tests/Drupal/Tests/TestSuites/TestSuiteBaseTest.php index bebb4310d074..0ba814342777 100644 --- a/core/tests/Drupal/Tests/TestSuites/TestSuiteBaseTest.php +++ b/core/tests/Drupal/Tests/TestSuites/TestSuiteBaseTest.php @@ -4,6 +4,10 @@ use org\bovigo\vfs\vfsStream; +// The test suite class is not part of the autoloader, we need to include it +// manually. +require_once __DIR__ . '/../../../TestSuites/TestSuiteBase.php'; + /** * @coversDefaultClass \Drupal\Tests\TestSuites\TestSuiteBase * -- GitLab