Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / profiles / testing / modules / drupal_system_listing_compatible_test / src / Tests / SystemListingCompatibleTest.php
diff --git a/web/core/profiles/testing/modules/drupal_system_listing_compatible_test/src/Tests/SystemListingCompatibleTest.php b/web/core/profiles/testing/modules/drupal_system_listing_compatible_test/src/Tests/SystemListingCompatibleTest.php
deleted file mode 100644 (file)
index c7da09f..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-<?php
-
-namespace Drupal\drupal_system_listing_compatible_test\Tests;
-
-use Drupal\simpletest\WebTestBase;
-
-/**
- * Verifies that tests in installation profile modules are found and may use
- * another profile for running tests.
- *
- * @group drupal_system_listing_compatible_test
- */
-class SystemListingCompatibleTest extends WebTestBase {
-
-  /**
-   * Attempt to enable a module from the Testing profile.
-   *
-   * This test uses the Minimal profile, but enables a module from the Testing
-   * profile to confirm that a different profile can be used for running tests.
-   *
-   * @var array
-   */
-  public static $modules = ['drupal_system_listing_compatible_test'];
-
-  /**
-   * Use the Minimal profile.
-   *
-   * This test needs to use a different installation profile than the test which
-   * asserts that this test is found.
-   *
-   * @see SimpleTestInstallationProfileModuleTestsTestCase
-   *
-   * @var string
-   */
-  protected $profile = 'minimal';
-
-  /**
-   * Non-empty test* method required to executed the test case class.
-   */
-  public function testSystemListing() {
-    $this->pass(__CLASS__ . ' test executed.');
-  }
-
-}