You are here

public function DecoratorTest::decorators in Devel 8

Same name and namespace in other branches
  1. 8.3 webprofiler/tests/src/Kernel/DecoratorTest.php \Drupal\Tests\webprofiler\Kernel\DecoratorTest::decorators()
  2. 8.2 webprofiler/tests/src/Kernel/DecoratorTest.php \Drupal\Tests\webprofiler\Kernel\DecoratorTest::decorators()
  3. 4.x webprofiler/tests/src/Kernel/DecoratorTest.php \Drupal\Tests\webprofiler\Kernel\DecoratorTest::decorators()

DataProvider for testEntityTypeDecorator.

Return value

array The array of values to run tests on.

File

webprofiler/tests/src/Kernel/DecoratorTest.php, line 49

Class

DecoratorTest
Class DecoratorTest.

Namespace

Drupal\Tests\webprofiler\Kernel

Code

public function decorators() {
  return array(
    array(
      'entity_type.manager',
      'Drupal\\Core\\Entity\\EntityTypeManager',
      'Drupal\\webprofiler\\Entity\\EntityManagerWrapper',
    ),
    array(
      'cache_factory',
      'Drupal\\Core\\Cache\\MemoryBackendFactory',
      'Drupal\\webprofiler\\Cache\\CacheFactoryWrapper',
    ),
    array(
      'asset.css.collection_renderer',
      'Drupal\\Core\\Asset\\CssCollectionRenderer',
      'Drupal\\webprofiler\\Asset\\CssCollectionRendererWrapper',
    ),
    array(
      'asset.js.collection_renderer',
      'Drupal\\Core\\Asset\\JsCollectionRenderer',
      'Drupal\\webprofiler\\Asset\\JsCollectionRendererWrapper',
    ),
    array(
      'state',
      'Drupal\\Core\\State\\State',
      'Drupal\\webprofiler\\State\\StateWrapper',
    ),
    array(
      'views.executable',
      'Drupal\\views\\ViewExecutableFactory',
      'Drupal\\webprofiler\\Views\\ViewExecutableFactoryWrapper',
    ),
    array(
      'form_builder',
      'Drupal\\Core\\Form\\FormBuilder',
      'Drupal\\webprofiler\\Form\\FormBuilderWrapper',
    ),
    array(
      'access_manager',
      'Drupal\\Core\\Access\\AccessManager',
      'Drupal\\webprofiler\\Access\\AccessManagerWrapper',
    ),
    array(
      'theme.negotiator',
      'Drupal\\Core\\Theme\\ThemeNegotiator',
      'Drupal\\webprofiler\\Theme\\ThemeNegotiatorWrapper',
    ),
    array(
      'config.factory',
      'Drupal\\Core\\Config\\ConfigFactory',
      'Drupal\\webprofiler\\Config\\ConfigFactoryWrapper',
    ),
    array(
      'string_translation',
      'Drupal\\Core\\StringTranslation\\TranslationManager',
      'Drupal\\webprofiler\\StringTranslation\\TranslationManagerWrapper',
    ),
  );
}