diff --git a/core/modules/jsonapi/tests/src/Functional/ConfigEntityResourceTestBase.php b/core/modules/jsonapi/tests/src/Functional/ConfigEntityResourceTestBase.php index e80a96d405141dccd0edc4e11d1e406c7bbec06a..f1bad7ce3400f788547d761def4e1029ca5d35a5 100644 --- a/core/modules/jsonapi/tests/src/Functional/ConfigEntityResourceTestBase.php +++ b/core/modules/jsonapi/tests/src/Functional/ConfigEntityResourceTestBase.php @@ -27,7 +27,7 @@ abstract class ConfigEntityResourceTestBase extends ResourceTestBase { * {@inheritdoc} */ public function setUp(): void { - if (in_array($this->getName(), static::SKIP_METHODS, TRUE)) { + if (in_array($this->name(), static::SKIP_METHODS, TRUE)) { // Skip before installing Drupal to prevent unnecessary use of resources. $this->markTestSkipped("Not yet supported for config entities."); } diff --git a/core/modules/migrate/tests/src/Kernel/MigrateSourceTestBase.php b/core/modules/migrate/tests/src/Kernel/MigrateSourceTestBase.php index 0c351aac4bedf39732624da27ee0873db6a5320a..56f6db4bdf05dad9a36dbbfff94ea52b15bc5230 100644 --- a/core/modules/migrate/tests/src/Kernel/MigrateSourceTestBase.php +++ b/core/modules/migrate/tests/src/Kernel/MigrateSourceTestBase.php @@ -80,7 +80,7 @@ protected function setUp(): void { protected function getPluginClass() { $annotations = Test::parseTestMethodAnnotations( static::class, - $this->getName() + $this->name() ); if (isset($annotations['class']['covers'])) { diff --git a/core/modules/rest/tests/src/Functional/EntityResource/ConfigEntityResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/ConfigEntityResourceTestBase.php index 152b781de8c2d2fcb67df58237f256f39d5935b5..05609db738d420f955f09205fd8b169e6e8aaf2d 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/ConfigEntityResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/ConfigEntityResourceTestBase.php @@ -20,7 +20,7 @@ abstract class ConfigEntityResourceTestBase extends EntityResourceTestBase { * {@inheritdoc} */ protected function setUp(): void { - if (in_array($this->getName(), static::SKIP_METHODS, TRUE)) { + if (in_array($this->name(), static::SKIP_METHODS, TRUE)) { // Skip before installing Drupal to prevent unnecessary use of resources. $this->markTestSkipped("Not yet supported for config entities."); } diff --git a/core/tests/Drupal/BuildTests/Framework/BuildTestBase.php b/core/tests/Drupal/BuildTests/Framework/BuildTestBase.php index 408143aeaa5568a350e50804b813676f86424e3b..375517369823f73fe8885ea26e5b508d08a9cfbf 100644 --- a/core/tests/Drupal/BuildTests/Framework/BuildTestBase.php +++ b/core/tests/Drupal/BuildTests/Framework/BuildTestBase.php @@ -160,7 +160,7 @@ protected function setUp(): void { // Set up the workspace directory. // @todo Glean working directory from env vars, etc. $fs = new SymfonyFilesystem(); - $this->workspaceDir = $fs->tempnam(DrupalFilesystem::getOsTemporaryDirectory(), '/build_workspace_' . md5($this->getName() . microtime(TRUE))); + $this->workspaceDir = $fs->tempnam(DrupalFilesystem::getOsTemporaryDirectory(), '/build_workspace_' . md5($this->name() . microtime(TRUE))); $fs->remove($this->workspaceDir); $fs->mkdir($this->workspaceDir); $this->initMink(); diff --git a/core/tests/Drupal/TestTools/PhpUnitCompatibility/PhpUnit9/TestCompatibilityTrait.php b/core/tests/Drupal/TestTools/PhpUnitCompatibility/PhpUnit9/TestCompatibilityTrait.php index 4bb8b01e194534d7e09f132dcc06f4cf24157701..8d647a5c74856ff63e87c47ec76eef0eb43b0561 100644 --- a/core/tests/Drupal/TestTools/PhpUnitCompatibility/PhpUnit9/TestCompatibilityTrait.php +++ b/core/tests/Drupal/TestTools/PhpUnitCompatibility/PhpUnit9/TestCompatibilityTrait.php @@ -9,4 +9,11 @@ */ trait TestCompatibilityTrait { + /** + * Get test name. + */ + public function name(): string { + return $this->getName(); + } + } diff --git a/core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Functional/ComposerHookTest.php b/core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Functional/ComposerHookTest.php index 24fcdfce2982d68a1e92aea5592014e359f4c3ee..1b2099f2e3a7791867ad3d053ede5dad75ba479d 100644 --- a/core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Functional/ComposerHookTest.php +++ b/core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Functional/ComposerHookTest.php @@ -59,7 +59,7 @@ protected function setUp(): void { $this->fileSystem = new Filesystem(); $this->fixtures = new Fixtures(); $this->fixtures->createIsolatedComposerCacheDir(); - $this->fixturesDir = $this->fixtures->tmpDir($this->getName()); + $this->fixturesDir = $this->fixtures->tmpDir($this->name()); $replacements = ['SYMLINK' => 'false', 'PROJECT_ROOT' => $this->fixtures->projectRoot()]; $this->fixtures->cloneFixtureProjects($this->fixturesDir, $replacements); } diff --git a/core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Functional/ManageGitIgnoreTest.php b/core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Functional/ManageGitIgnoreTest.php index 9e50d3c92bf077f9e03cbbea9a107fe814cfd831..c23631c7b5483b3eb209028d1fc31981d11ec088 100644 --- a/core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Functional/ManageGitIgnoreTest.php +++ b/core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Functional/ManageGitIgnoreTest.php @@ -8,6 +8,7 @@ use Drupal\Tests\Composer\Plugin\Scaffold\Fixtures; use Drupal\Tests\Composer\Plugin\Scaffold\AssertUtilsTrait; use Drupal\Tests\Composer\Plugin\Scaffold\ExecTrait; +use Drupal\Tests\PhpUnitCompatibilityTrait; use PHPUnit\Framework\TestCase; /** @@ -22,6 +23,7 @@ class ManageGitIgnoreTest extends TestCase { use ExecTrait; use AssertUtilsTrait; + use PhpUnitCompatibilityTrait; /** * The root of this project. @@ -83,7 +85,7 @@ protected function tearDown(): void { * The path to the fixture directory. */ protected function createSutWithGit($fixture_name) { - $this->fixturesDir = $this->fixtures->tmpDir($this->getName()); + $this->fixturesDir = $this->fixtures->tmpDir($this->name()); $sut = $this->fixturesDir . '/' . $fixture_name; $replacements = ['SYMLINK' => 'false', 'PROJECT_ROOT' => $this->projectRoot]; $this->fixtures->cloneFixtureProjects($this->fixturesDir, $replacements); diff --git a/core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Functional/ScaffoldTest.php b/core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Functional/ScaffoldTest.php index 8f3055f7ce2d71b55df8979ae37295bb7e90c3a6..55ecf23c99c0425443024244aa93c6fbd8622b1e 100644 --- a/core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Functional/ScaffoldTest.php +++ b/core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Functional/ScaffoldTest.php @@ -8,6 +8,7 @@ use Drupal\Tests\Composer\Plugin\Scaffold\AssertUtilsTrait; use Drupal\Tests\Composer\Plugin\Scaffold\Fixtures; use Drupal\Tests\Composer\Plugin\Scaffold\ScaffoldTestResult; +use Drupal\Tests\PhpUnitCompatibilityTrait; use PHPUnit\Framework\TestCase; /** @@ -20,6 +21,7 @@ */ class ScaffoldTest extends TestCase { use AssertUtilsTrait; + use PhpUnitCompatibilityTrait; /** * The root of this project. @@ -65,7 +67,7 @@ protected function setUp(): void { // a directory will be created in the system's temporary directory. $this->fixturesDir = getenv('SCAFFOLD_FIXTURE_DIR'); if (!$this->fixturesDir) { - $this->fixturesDir = $this->fixtures->tmpDir($this->getName()); + $this->fixturesDir = $this->fixtures->tmpDir($this->name()); } } diff --git a/core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Functional/ScaffoldUpgradeTest.php b/core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Functional/ScaffoldUpgradeTest.php index 20eb6d1e5a1b17acd87e583bb245302d1b17f5c3..f28ec78ca510bcf7f8ead70ca4464270c83d95a7 100644 --- a/core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Functional/ScaffoldUpgradeTest.php +++ b/core/tests/Drupal/Tests/Composer/Plugin/Scaffold/Functional/ScaffoldUpgradeTest.php @@ -8,6 +8,7 @@ use Drupal\Tests\Composer\Plugin\Scaffold\AssertUtilsTrait; use Drupal\Tests\Composer\Plugin\Scaffold\ExecTrait; use Drupal\Tests\Composer\Plugin\Scaffold\Fixtures; +use Drupal\Tests\PhpUnitCompatibilityTrait; use PHPUnit\Framework\TestCase; /** @@ -27,6 +28,7 @@ class ScaffoldUpgradeTest extends TestCase { use AssertUtilsTrait; use ExecTrait; + use PhpUnitCompatibilityTrait; /** * The Fixtures object. @@ -58,7 +60,7 @@ public function testScaffoldUpgrade() { if (str_contains($composerVersionLine, 'Composer version 2')) { $this->markTestSkipped('We cannot run the scaffold upgrade test with Composer 2 until we have a stable version of drupal/core-composer-scaffold to start from that we can install with Composer 2.x.'); } - $this->fixturesDir = $this->fixtures->tmpDir($this->getName()); + $this->fixturesDir = $this->fixtures->tmpDir($this->name()); $replacements = ['SYMLINK' => 'false', 'PROJECT_ROOT' => $this->fixtures->projectRoot()]; $this->fixtures->cloneFixtureProjects($this->fixturesDir, $replacements); $topLevelProjectDir = 'drupal-drupal'; diff --git a/core/tests/Drupal/Tests/PhpUnitCompatibilityTrait.php b/core/tests/Drupal/Tests/PhpUnitCompatibilityTrait.php index 3bba95e3a761c0f27f5bedb4136c51c9af4cac70..932bd03a3e83aa8b70e03d0d1954051bd549bb23 100644 --- a/core/tests/Drupal/Tests/PhpUnitCompatibilityTrait.php +++ b/core/tests/Drupal/Tests/PhpUnitCompatibilityTrait.php @@ -15,9 +15,15 @@ class_alias("Drupal\TestTools\PhpUnitCompatibility\PhpUnit" . RunnerVersion::get if (FALSE) { /** - * Makes Drupal's test API forward compatible with multiple versions of PHPUnit. + * Makes Drupal's test API forward compatible with future PHPUnit releases. + * + * This stub is present here to allow PHPStan identify the methods present + * in the version-bound trait. */ trait PhpUnitCompatibilityTrait { + + use \Drupal\TestTools\PhpUnitCompatibility\PhpUnit9\TestCompatibilityTrait; + } }