diff --git a/core/modules/aggregator/src/Tests/FeedCacheTagsTest.php b/core/modules/aggregator/src/Tests/FeedCacheTagsTest.php
index 2ad5f5a..1b6aded 100644
--- a/core/modules/aggregator/src/Tests/FeedCacheTagsTest.php
+++ b/core/modules/aggregator/src/Tests/FeedCacheTagsTest.php
@@ -13,6 +13,8 @@
 
 /**
  * Tests the Feed entity's cache tags.
+ *
+ * @group aggregator
  */
 class FeedCacheTagsTest extends EntityWithUriCacheTagsTestBase {
 
@@ -24,13 +26,6 @@ class FeedCacheTagsTest extends EntityWithUriCacheTagsTestBase {
   /**
    * {@inheritdoc}
    */
-  public static function getInfo() {
-    return parent::generateStandardizedInfo('Aggregator feed', 'Aggregator');
-  }
-
-  /**
-   * {@inheritdoc}
-   */
   protected function setUp() {
     parent::setUp();
 
diff --git a/core/modules/aggregator/src/Tests/ItemCacheTagsTest.php b/core/modules/aggregator/src/Tests/ItemCacheTagsTest.php
index f79a53c..3154e44 100644
--- a/core/modules/aggregator/src/Tests/ItemCacheTagsTest.php
+++ b/core/modules/aggregator/src/Tests/ItemCacheTagsTest.php
@@ -14,6 +14,8 @@
 
 /**
  * Tests the Item entity's cache tags.
+ *
+ * @group aggregator
  */
 class ItemCacheTagsTest extends EntityCacheTagsTestBase {
 
@@ -25,13 +27,6 @@ class ItemCacheTagsTest extends EntityCacheTagsTestBase {
   /**
    * {@inheritdoc}
    */
-  public static function getInfo() {
-    return parent::generateStandardizedInfo('Aggregator feed item', 'Aggregator');
-  }
-
-  /**
-   * {@inheritdoc}
-   */
   protected function setUp() {
     parent::setUp();
 
diff --git a/core/modules/contact/src/Tests/ContactStorageTest.php b/core/modules/contact/src/Tests/ContactStorageTest.php
index 79b3cfd..5db6f3a 100644
--- a/core/modules/contact/src/Tests/ContactStorageTest.php
+++ b/core/modules/contact/src/Tests/ContactStorageTest.php
@@ -13,6 +13,8 @@
 
 /**
  * Tests storing contact messages.
+ *
+ * @group contact
  */
 class ContactStorageTest extends ContactSitewideTest {
 
@@ -31,14 +33,6 @@ class ContactStorageTest extends ContactSitewideTest {
     'contact_test',
   );
 
-  public static function getInfo() {
-    return array(
-      'name' => 'Contact Storage',
-      'description' => 'Tests that contact messages can be stored.',
-      'group' => 'Contact',
-    );
-  }
-
   /**
    * Tests configuration options and the site-wide contact form.
    */
diff --git a/core/modules/language/src/Tests/EntityDefaultLanguageTest.php b/core/modules/language/src/Tests/EntityDefaultLanguageTest.php
index 4c5f3b2..12c211d 100644
--- a/core/modules/language/src/Tests/EntityDefaultLanguageTest.php
+++ b/core/modules/language/src/Tests/EntityDefaultLanguageTest.php
@@ -12,6 +12,8 @@
 
 /**
  * Tests default language code is properly generated for entities.
+ *
+ * @group language
  */
 class EntityDefaultLanguageTest extends KernelTestBase {
 
@@ -25,17 +27,6 @@ class EntityDefaultLanguageTest extends KernelTestBase {
   /**
    * {@inheritdoc}
    */
-  public static function getInfo() {
-    return array(
-      'name' => 'Entity default language',
-      'description' => 'Test that entities are created with correct language code.',
-      'group' => 'Entity API',
-    );
-  }
-
-  /**
-   * {@inheritdoc}
-   */
   public function setUp() {
     parent::setUp();
 
diff --git a/core/modules/rdf/src/Tests/Field/LinkFieldRdfaTest.php b/core/modules/rdf/src/Tests/Field/LinkFieldRdfaTest.php
index e806a60..c5ea577 100644
--- a/core/modules/rdf/src/Tests/Field/LinkFieldRdfaTest.php
+++ b/core/modules/rdf/src/Tests/Field/LinkFieldRdfaTest.php
@@ -10,6 +10,8 @@
 
 /**
  * Tests the placement of RDFa in link field formatters.
+ *
+ * @group rdf
  */
 class LinkFieldRdfaTest extends FieldRdfaTestBase {
 
@@ -26,17 +28,6 @@ class LinkFieldRdfaTest extends FieldRdfaTestBase {
   /**
    * {@inheritdoc}
    */
-  public static function getInfo() {
-    return array(
-      'name'  => 'Field formatter: link',
-      'description'  => 'Tests RDFa output by link field formatters.',
-      'group' => 'RDF',
-    );
-  }
-
-  /**
-   * {@inheritdoc}
-   */
   protected function setUp() {
     parent::setUp();
 
diff --git a/core/modules/system/src/Tests/Entity/EntitySchemaTest.php b/core/modules/system/src/Tests/Entity/EntitySchemaTest.php
index bdf08e3..7337f89 100644
--- a/core/modules/system/src/Tests/Entity/EntitySchemaTest.php
+++ b/core/modules/system/src/Tests/Entity/EntitySchemaTest.php
@@ -11,6 +11,8 @@
 
 /**
  * Tests adding a custom bundle field.
+ *
+ * @group system
  */
 class EntitySchemaTest extends EntityUnitTestBase  {
 
@@ -31,17 +33,6 @@ class EntitySchemaTest extends EntityUnitTestBase  {
   /**
    * {@inheritdoc}
    */
-  public static function getInfo() {
-    return array(
-      'name' => 'Entity Schema',
-      'description' => 'Tests entity field schema API for base and bundle fields.',
-      'group' => 'Entity API',
-    );
-  }
-
-  /**
-   * {@inheritdoc}
-   */
   public function setUp() {
     parent::setUp();
     $this->installSchema('user', array('users_data'));
diff --git a/core/modules/user/tests/src/Unit/UserAccessControlHandlerTest.php b/core/modules/user/tests/src/Unit/UserAccessControlHandlerTest.php
index 4548e48..947d553 100644
--- a/core/modules/user/tests/src/Unit/UserAccessControlHandlerTest.php
+++ b/core/modules/user/tests/src/Unit/UserAccessControlHandlerTest.php
@@ -60,17 +60,6 @@ class UserAccessControlHandlerTest extends UnitTestCase {
   /**
    * {@inheritdoc}
    */
-  public static function getInfo() {
-    return array(
-      'name' => 'User access controller',
-      'description' => 'Tests the user access controller.',
-      'group' => 'User',
-    );
-  }
-
-  /**
-   * {@inheritdoc}
-   */
   public function setUp() {
     parent::setUp();
     $this->viewer = $this->getMock('\Drupal\Core\Session\AccountInterface');
diff --git a/core/tests/Drupal/Tests/Component/Utility/SafeMarkupTest.php b/core/tests/Drupal/Tests/Component/Utility/SafeMarkupTest.php
index cd0ee1d..03fe878 100644
--- a/core/tests/Drupal/Tests/Component/Utility/SafeMarkupTest.php
+++ b/core/tests/Drupal/Tests/Component/Utility/SafeMarkupTest.php
@@ -13,18 +13,11 @@
 /**
  * Tests marking strings as safe.
  *
+ * @group Utility
  * @coversDefaultClass \Drupal\Component\Utility\SafeMarkup
  */
 class SafeMarkupTest extends UnitTestCase {
 
-  public static function getInfo() {
-    return array(
-      'name' => 'SafeMarkup tests',
-      'description' => 'Confirm that SafeMarkup methods work correctly.',
-      'group' => 'Common',
-    );
-  }
-
   /**
    * Tests SafeMarkup::set() and SafeMarkup::isSafe().
    *
