From d7efdaa9f98202e0f484f733cdd8509730281414 Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Fri, 27 Jun 2014 13:11:05 +0100 Subject: [PATCH] Issue #2262195 by sun: Fixed Various test classes are missing phpDoc. --- core/modules/locale/src/Tests/LocaleLocaleLookupTest.php | 3 +++ core/modules/migrate/tests/src/process/CallbackTest.php | 2 ++ core/modules/migrate/tests/src/process/ConcatTest.php | 2 ++ core/modules/migrate/tests/src/process/GetTest.php | 2 ++ core/modules/migrate/tests/src/process/StaticMapTest.php | 2 ++ core/modules/migrate_drupal/tests/src/source/VariableTest.php | 2 ++ .../migrate_drupal/tests/src/source/d6/Drupal6SqlBaseTest.php | 2 ++ core/tests/Drupal/Tests/Core/Path/PathMatcherTest.php | 2 ++ 8 files changed, 17 insertions(+) diff --git a/core/modules/locale/src/Tests/LocaleLocaleLookupTest.php b/core/modules/locale/src/Tests/LocaleLocaleLookupTest.php index 908ff19cab..df32c028f1 100644 --- a/core/modules/locale/src/Tests/LocaleLocaleLookupTest.php +++ b/core/modules/locale/src/Tests/LocaleLocaleLookupTest.php @@ -10,6 +10,9 @@ use Drupal\Core\Language\Language; use Drupal\simpletest\WebTestBase; +/** + * Tests that LocaleLookup does not cause circular references. + */ class LocaleLocaleLookupTest extends WebTestBase { /** diff --git a/core/modules/migrate/tests/src/process/CallbackTest.php b/core/modules/migrate/tests/src/process/CallbackTest.php index c4ace45573..1a29ab902d 100644 --- a/core/modules/migrate/tests/src/process/CallbackTest.php +++ b/core/modules/migrate/tests/src/process/CallbackTest.php @@ -10,6 +10,8 @@ use Drupal\migrate\Plugin\migrate\process\Callback; /** + * Tests the callback process plugin. + * * @group migrate * @group Drupal */ diff --git a/core/modules/migrate/tests/src/process/ConcatTest.php b/core/modules/migrate/tests/src/process/ConcatTest.php index 22be55eb60..a189fe1dbf 100644 --- a/core/modules/migrate/tests/src/process/ConcatTest.php +++ b/core/modules/migrate/tests/src/process/ConcatTest.php @@ -10,6 +10,8 @@ use Drupal\migrate\Plugin\migrate\process\Concat; /** + * Tests the concat process plugin. + * * @group migrate * @group Drupal */ diff --git a/core/modules/migrate/tests/src/process/GetTest.php b/core/modules/migrate/tests/src/process/GetTest.php index a268e13430..daedc089c9 100644 --- a/core/modules/migrate/tests/src/process/GetTest.php +++ b/core/modules/migrate/tests/src/process/GetTest.php @@ -10,6 +10,8 @@ use Drupal\migrate\Row; /** + * Tests the get process plugin. + * * @group migrate * @group Drupal */ diff --git a/core/modules/migrate/tests/src/process/StaticMapTest.php b/core/modules/migrate/tests/src/process/StaticMapTest.php index 774afba817..9044526777 100644 --- a/core/modules/migrate/tests/src/process/StaticMapTest.php +++ b/core/modules/migrate/tests/src/process/StaticMapTest.php @@ -9,6 +9,8 @@ use Drupal\migrate\Plugin\migrate\process\StaticMap; /** + * Tests the static map process plugin. + * * @group migrate * @group Drupal */ diff --git a/core/modules/migrate_drupal/tests/src/source/VariableTest.php b/core/modules/migrate_drupal/tests/src/source/VariableTest.php index b5da66bb62..9b1f0b7b64 100644 --- a/core/modules/migrate_drupal/tests/src/source/VariableTest.php +++ b/core/modules/migrate_drupal/tests/src/source/VariableTest.php @@ -10,6 +10,8 @@ use Drupal\migrate\Tests\MigrateSqlSourceTestCase; /** + * Tests the variable source plugin. + * * @group migrate_drupal * @group Drupal */ diff --git a/core/modules/migrate_drupal/tests/src/source/d6/Drupal6SqlBaseTest.php b/core/modules/migrate_drupal/tests/src/source/d6/Drupal6SqlBaseTest.php index b8c7c96fb9..5cb192e0a2 100644 --- a/core/modules/migrate_drupal/tests/src/source/d6/Drupal6SqlBaseTest.php +++ b/core/modules/migrate_drupal/tests/src/source/d6/Drupal6SqlBaseTest.php @@ -10,6 +10,8 @@ use Drupal\migrate\Tests\MigrateTestCase; /** + * Tests the D6 SQL base class. + * * @group migrate_drupal * @group Drupal */ diff --git a/core/tests/Drupal/Tests/Core/Path/PathMatcherTest.php b/core/tests/Drupal/Tests/Core/Path/PathMatcherTest.php index 6c43478b1b..6627c2983c 100644 --- a/core/tests/Drupal/Tests/Core/Path/PathMatcherTest.php +++ b/core/tests/Drupal/Tests/Core/Path/PathMatcherTest.php @@ -12,6 +12,8 @@ use Drupal\Tests\UnitTestCase; /** + * Tests that path matching is working properly. + * * @group Drupal * @see \Drupal\Core\Path\PathMatcher */ -- GitLab