You are here

public function ExtensionInstallStorageTest::providerTestProfileDeprecation in Drupal 8

Data provider for ::testProfileDeprecation

File

core/tests/Drupal/Tests/Core/Config/ExtensionInstallStorageTest.php, line 39

Class

ExtensionInstallStorageTest
Tests the Config.

Namespace

Drupal\Tests\Core\Config

Code

public function providerTestProfileDeprecation() {
  return [
    'null profile' => [
      NULL,
    ],
    'test profile' => [
      'test',
    ],
  ];
}