You are here

protected function AnnotatedClassDiscoveryTest::setUp in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/system/src/Tests/Plugin/Discovery/AnnotatedClassDiscoveryTest.php \Drupal\system\Tests\Plugin\Discovery\AnnotatedClassDiscoveryTest::setUp()

Performs setup tasks before each individual test method is run.

Overrides KernelTestBase::setUp

File

core/modules/system/src/Tests/Plugin/Discovery/AnnotatedClassDiscoveryTest.php, line 19
Contains \Drupal\system\Tests\Plugin\Discovery\AnnotatedClassDiscoveryTest.

Class

AnnotatedClassDiscoveryTest
Tests that plugins are correctly discovered using annotated classes.

Namespace

Drupal\system\Tests\Plugin\Discovery

Code

protected function setUp() {
  parent::setUp();
  $this->expectedDefinitions = array(
    'apple' => array(
      'id' => 'apple',
      'label' => 'Apple',
      'color' => 'green',
      'class' => 'Drupal\\plugin_test\\Plugin\\plugin_test\\fruit\\Apple',
      'provider' => 'plugin_test',
    ),
    'banana' => array(
      'id' => 'banana',
      'label' => 'Banana',
      'color' => 'yellow',
      'uses' => array(
        'bread' => t('Banana bread'),
      ),
      'class' => 'Drupal\\plugin_test\\Plugin\\plugin_test\\fruit\\Banana',
      'provider' => 'plugin_test',
    ),
    'cherry' => array(
      'id' => 'cherry',
      'label' => 'Cherry',
      'color' => 'red',
      'class' => 'Drupal\\plugin_test\\Plugin\\plugin_test\\fruit\\Cherry',
      'provider' => 'plugin_test',
    ),
    'kale' => array(
      'id' => 'kale',
      'label' => 'Kale',
      'color' => 'green',
      'class' => 'Drupal\\plugin_test\\Plugin\\plugin_test\\fruit\\Kale',
      'provider' => 'plugin_test',
    ),
    'orange' => array(
      'id' => 'orange',
      'label' => 'Orange',
      'color' => 'orange',
      'class' => 'Drupal\\plugin_test\\Plugin\\plugin_test\\fruit\\Orange',
      'provider' => 'plugin_test',
    ),
  );
  $base_directory = \Drupal::root() . '/core/modules/system/tests/modules/plugin_test/src';
  $namespaces = new \ArrayObject(array(
    'Drupal\\plugin_test' => $base_directory,
  ));
  $this->discovery = new AnnotatedClassDiscovery('Plugin/plugin_test/fruit', $namespaces);
  $this->emptyDiscovery = new AnnotatedClassDiscovery('Plugin/non_existing_module/non_existing_plugin_type', $namespaces);
}