diff options
author | nod_ <nod_@598310.no-reply.drupal.org> | 2025-03-21 10:30:03 +0100 |
---|---|---|
committer | nod_ <nod_@598310.no-reply.drupal.org> | 2025-03-21 10:30:03 +0100 |
commit | 967135a7954f2a5c9ab19cc7725cdea219d98c7c (patch) | |
tree | 54615f0a2c3acb2bfdf6ea5df803b347076f8bf2 /core/modules/package_manager | |
parent | 7265831241910980852d79e5188b4b7b3960400d (diff) | |
download | drupal-967135a7954f2a5c9ab19cc7725cdea219d98c7c.tar.gz drupal-967135a7954f2a5c9ab19cc7725cdea219d98c7c.zip |
Issue #3508506 by quietone, smustgrave, borisson_: Fix Drupal.Commenting.FunctionComment.Missing in Unit tests
Diffstat (limited to 'core/modules/package_manager')
3 files changed, 9 insertions, 0 deletions
diff --git a/core/modules/package_manager/tests/src/Unit/LoggingBeginnerTest.php b/core/modules/package_manager/tests/src/Unit/LoggingBeginnerTest.php index af84befb7da..b54e663179a 100644 --- a/core/modules/package_manager/tests/src/Unit/LoggingBeginnerTest.php +++ b/core/modules/package_manager/tests/src/Unit/LoggingBeginnerTest.php @@ -18,6 +18,9 @@ use PhpTuf\ComposerStager\API\Path\Value\PathInterface; */ class LoggingBeginnerTest extends UnitTestCase { + /** + * Tests the output of LoggingBeginner(). + */ public function testDecoratedBeginnerIsCalled(): void { $decorated = $this->createMock(BeginnerInterface::class); diff --git a/core/modules/package_manager/tests/src/Unit/LoggingCommitterTest.php b/core/modules/package_manager/tests/src/Unit/LoggingCommitterTest.php index 3d6ab55de0c..83c19a1b8b6 100644 --- a/core/modules/package_manager/tests/src/Unit/LoggingCommitterTest.php +++ b/core/modules/package_manager/tests/src/Unit/LoggingCommitterTest.php @@ -18,6 +18,9 @@ use PhpTuf\ComposerStager\API\Path\Value\PathInterface; */ class LoggingCommitterTest extends UnitTestCase { + /** + * Tests the output of LoggingCommitter(). + */ public function testDecoratedCommitterIsCalled(): void { $decorated = $this->createMock(CommitterInterface::class); diff --git a/core/modules/package_manager/tests/src/Unit/LoggingStagerTest.php b/core/modules/package_manager/tests/src/Unit/LoggingStagerTest.php index f21577c348d..a7e6c050e17 100644 --- a/core/modules/package_manager/tests/src/Unit/LoggingStagerTest.php +++ b/core/modules/package_manager/tests/src/Unit/LoggingStagerTest.php @@ -18,6 +18,9 @@ use PhpTuf\ComposerStager\API\Process\Value\OutputTypeEnum; */ class LoggingStagerTest extends UnitTestCase { + /** + * Tests LoggingStager(). + */ public function testDecoratedStagerIsCalled(): void { $decorated = $this->createMock(StagerInterface::class); |