You are here

class AnnotationBridgeDecoratorTest in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Component/Annotation/Plugin/Discovery/AnnotationBridgeDecoratorTest.php \Drupal\Tests\Component\Annotation\Plugin\Discovery\AnnotationBridgeDecoratorTest

@coversDefaultClass \Drupal\Component\Annotation\Plugin\Discovery\AnnotationBridgeDecorator @group Plugin

Hierarchy

Expanded class hierarchy of AnnotationBridgeDecoratorTest

File

core/tests/Drupal/Tests/Component/Annotation/Plugin/Discovery/AnnotationBridgeDecoratorTest.php, line 15

Namespace

Drupal\Tests\Component\Annotation\Plugin\Discovery
View source
class AnnotationBridgeDecoratorTest extends TestCase {

  /**
   * @covers ::getDefinitions
   */
  public function testGetDefinitions() {
    $definitions = [];
    $definitions['object'] = new ObjectDefinition([
      'id' => 'foo',
    ]);
    $definitions['array'] = [
      'id' => 'bar',
    ];
    $discovery = $this
      ->prophesize(DiscoveryInterface::class);
    $discovery
      ->getDefinitions()
      ->willReturn($definitions);
    $decorator = new AnnotationBridgeDecorator($discovery
      ->reveal(), TestAnnotation::class);
    $expected = [
      'object' => new ObjectDefinition([
        'id' => 'foo',
      ]),
      'array' => new ObjectDefinition([
        'id' => 'bar',
      ]),
    ];
    $this
      ->assertEquals($expected, $decorator
      ->getDefinitions());
  }

}

Members