function AnnotationBaseTest::testGetId

Same name in other branches
  1. 8.9.x core/tests/Drupal/Tests/Component/Annotation/AnnotationBaseTest.php \Drupal\Tests\Component\Annotation\AnnotationBaseTest::testGetId()
  2. 10 core/tests/Drupal/Tests/Component/Annotation/AnnotationBaseTest.php \Drupal\Tests\Component\Annotation\AnnotationBaseTest::testGetId()
  3. 11.x core/tests/Drupal/Tests/Component/Annotation/AnnotationBaseTest.php \Drupal\Tests\Component\Annotation\AnnotationBaseTest::testGetId()

@covers ::getId

File

core/tests/Drupal/Tests/Component/Annotation/AnnotationBaseTest.php, line 27

Class

AnnotationBaseTest
@coversDefaultClass \Drupal\Component\Annotation\AnnotationBase @group Annotation

Namespace

Drupal\Tests\Component\Annotation

Code

public function testGetId() {
    $plugin = new AnnotationBaseStub();
    // Doctrine sets the public prop directly.
    $plugin->id = 'example';
    $this->assertEquals('example', $plugin->getId());
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.